-- MariaDB dump 10.19  Distrib 10.6.17-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: fef26c5_wp820
-- ------------------------------------------------------
-- Server version	10.6.17-MariaDB

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

--
-- Table structure for table `wp7riu_commentmeta`
--

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

--
-- Dumping data for table `wp7riu_commentmeta`
--

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

--
-- Table structure for table `wp7riu_comments`
--

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

--
-- Dumping data for table `wp7riu_comments`
--

LOCK TABLES `wp7riu_comments` WRITE;
/*!40000 ALTER TABLE `wp7riu_comments` DISABLE KEYS */;
INSERT INTO `wp7riu_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-02-09 01:35:34','2024-02-09 01:35:34','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wp7riu_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_grp_google_place`
--

DROP TABLE IF EXISTS `wp7riu_grp_google_place`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp7riu_grp_google_place` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `place_id` varchar(80) NOT NULL,
  `name` varchar(255) NOT NULL,
  `photo` varchar(255) DEFAULT NULL,
  `icon` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `rating` double DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `review_count` int(11) DEFAULT NULL,
  `updated` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `grp_place_id` (`place_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp7riu_grp_google_place`
--

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

--
-- Table structure for table `wp7riu_grp_google_review`
--

DROP TABLE IF EXISTS `wp7riu_grp_google_review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp7riu_grp_google_review` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `google_place_id` bigint(20) unsigned NOT NULL,
  `rating` int(11) NOT NULL,
  `text` varchar(10000) DEFAULT NULL,
  `time` int(11) NOT NULL,
  `language` varchar(10) DEFAULT NULL,
  `author_name` varchar(255) DEFAULT NULL,
  `author_url` varchar(255) DEFAULT NULL,
  `profile_photo_url` varchar(255) DEFAULT NULL,
  `hide` varchar(1) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `grp_google_place_id` (`google_place_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp7riu_grp_google_review`
--

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

--
-- Table structure for table `wp7riu_grp_google_stats`
--

DROP TABLE IF EXISTS `wp7riu_grp_google_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp7riu_grp_google_stats` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `google_place_id` bigint(20) unsigned NOT NULL,
  `time` int(11) NOT NULL,
  `rating` double DEFAULT NULL,
  `review_count` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `grp_google_place_id` (`google_place_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp7riu_grp_google_stats`
--

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

--
-- Table structure for table `wp7riu_links`
--

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

--
-- Dumping data for table `wp7riu_links`
--

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

--
-- Table structure for table `wp7riu_options`
--

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

--
-- Dumping data for table `wp7riu_options`
--

LOCK TABLES `wp7riu_options` WRITE;
/*!40000 ALTER TABLE `wp7riu_options` DISABLE KEYS */;
INSERT INTO `wp7riu_options` VALUES (1,'siteurl','https://hausofskai-wip.com/moanalagooncharters','yes'),(2,'home','https://hausofskai-wip.com/moanalagooncharters','yes'),(3,'blogname','moanalagooncharters','yes'),(4,'blogdescription','moanalagooncharters','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','hausofskai@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:338:{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:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:51:\"layout_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?layout_tag=$matches[1]&feed=$matches[2]\";s:46:\"layout_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?layout_tag=$matches[1]&feed=$matches[2]\";s:27:\"layout_tag/([^/]+)/embed/?$\";s:43:\"index.php?layout_tag=$matches[1]&embed=true\";s:39:\"layout_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?layout_tag=$matches[1]&paged=$matches[2]\";s:21:\"layout_tag/([^/]+)/?$\";s:32:\"index.php?layout_tag=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_pack=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_pack=$matches[1]&feed=$matches[2]\";s:28:\"layout_pack/([^/]+)/embed/?$\";s:44:\"index.php?layout_pack=$matches[1]&embed=true\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_pack=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:33:\"index.php?layout_pack=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:44:\"index.php?layout_type=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_type=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:33:\"index.php?layout_type=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:45:\"index.php?module_width=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?module_width=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:34:\"index.php?module_width=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:38:\"index.php?scope=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?scope=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:27:\"index.php?scope=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"et_tb_item_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?et_tb_item_type=$matches[1]&feed=$matches[2]\";s:51:\"et_tb_item_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?et_tb_item_type=$matches[1]&feed=$matches[2]\";s:32:\"et_tb_item_type/([^/]+)/embed/?$\";s:48:\"index.php?et_tb_item_type=$matches[1]&embed=true\";s:44:\"et_tb_item_type/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?et_tb_item_type=$matches[1]&paged=$matches[2]\";s:26:\"et_tb_item_type/([^/]+)/?$\";s:37:\"index.php?et_tb_item_type=$matches[1]\";s:38:\"et_tb_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"et_tb_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"et_tb_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"et_tb_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"et_tb_item/([^/]+)/embed/?$\";s:58:\"index.php?post_type=et_tb_item&name=$matches[1]&embed=true\";s:31:\"et_tb_item/([^/]+)/trackback/?$\";s:52:\"index.php?post_type=et_tb_item&name=$matches[1]&tb=1\";s:39:\"et_tb_item/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&paged=$matches[2]\";s:46:\"et_tb_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&cpage=$matches[2]\";s:35:\"et_tb_item/([^/]+)(?:/([0-9]+))?/?$\";s:64:\"index.php?post_type=et_tb_item&name=$matches[1]&page=$matches[2]\";s:27:\"et_tb_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"et_tb_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"et_tb_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"et_tb_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:36:\"grw_feed/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"grw_feed/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"grw_feed/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"grw_feed/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"grw_feed/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"grw_feed/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"grw_feed/([^/]+)/embed/?$\";s:41:\"index.php?grw_feed=$matches[1]&embed=true\";s:29:\"grw_feed/([^/]+)/trackback/?$\";s:35:\"index.php?grw_feed=$matches[1]&tb=1\";s:37:\"grw_feed/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?grw_feed=$matches[1]&paged=$matches[2]\";s:44:\"grw_feed/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?grw_feed=$matches[1]&cpage=$matches[2]\";s:33:\"grw_feed/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?grw_feed=$matches[1]&page=$matches[2]\";s:25:\"grw_feed/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"grw_feed/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"grw_feed/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"grw_feed/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"grw_feed/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"grw_feed/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_theme_options/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_options/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_options/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_options/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_options/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_theme_options/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_theme_options/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_options&name=$matches[1]&embed=true\";s:37:\"et_theme_options/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_options&name=$matches[1]&tb=1\";s:45:\"et_theme_options/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_options&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_options/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_options&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_options/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_options&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_options/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_options/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_options/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_options/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_options/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_theme_options/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"et_code_snippet_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:56:\"et_code_snippet_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:37:\"et_code_snippet_type/([^/]+)/embed/?$\";s:53:\"index.php?et_code_snippet_type=$matches[1]&embed=true\";s:49:\"et_code_snippet_type/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?et_code_snippet_type=$matches[1]&paged=$matches[2]\";s:31:\"et_code_snippet_type/([^/]+)/?$\";s:42:\"index.php?et_code_snippet_type=$matches[1]\";s:43:\"et_code_snippet/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"et_code_snippet/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"et_code_snippet/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"et_code_snippet/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"et_code_snippet/([^/]+)/embed/?$\";s:63:\"index.php?post_type=et_code_snippet&name=$matches[1]&embed=true\";s:36:\"et_code_snippet/([^/]+)/trackback/?$\";s:57:\"index.php?post_type=et_code_snippet&name=$matches[1]&tb=1\";s:44:\"et_code_snippet/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&paged=$matches[2]\";s:51:\"et_code_snippet/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&cpage=$matches[2]\";s:40:\"et_code_snippet/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?post_type=et_code_snippet&name=$matches[1]&page=$matches[2]\";s:32:\"et_code_snippet/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"et_code_snippet/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"et_code_snippet/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"et_code_snippet/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_theme_builder/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_builder/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_builder/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_theme_builder/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_theme_builder/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_builder&name=$matches[1]&embed=true\";s:37:\"et_theme_builder/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_builder&name=$matches[1]&tb=1\";s:45:\"et_theme_builder/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_builder/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_builder/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_builder&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_builder/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_builder/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_builder/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_theme_builder/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"et_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"et_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"et_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"et_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"et_template/([^/]+)/embed/?$\";s:59:\"index.php?post_type=et_template&name=$matches[1]&embed=true\";s:32:\"et_template/([^/]+)/trackback/?$\";s:53:\"index.php?post_type=et_template&name=$matches[1]&tb=1\";s:40:\"et_template/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&paged=$matches[2]\";s:47:\"et_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&cpage=$matches[2]\";s:36:\"et_template/([^/]+)(?:/([0-9]+))?/?$\";s:65:\"index.php?post_type=et_template&name=$matches[1]&page=$matches[2]\";s:28:\"et_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"et_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"et_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"et_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_header_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_header_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_header_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_header_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_header_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_header_layout&name=$matches[1]&embed=true\";s:37:\"et_header_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_header_layout&name=$matches[1]&tb=1\";s:45:\"et_header_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_header_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_header_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_header_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_header_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_header_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_header_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_header_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"et_body_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"et_body_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"et_body_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"et_body_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"et_body_layout/([^/]+)/embed/?$\";s:62:\"index.php?post_type=et_body_layout&name=$matches[1]&embed=true\";s:35:\"et_body_layout/([^/]+)/trackback/?$\";s:56:\"index.php?post_type=et_body_layout&name=$matches[1]&tb=1\";s:43:\"et_body_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&paged=$matches[2]\";s:50:\"et_body_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&cpage=$matches[2]\";s:39:\"et_body_layout/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?post_type=et_body_layout&name=$matches[1]&page=$matches[2]\";s:31:\"et_body_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"et_body_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"et_body_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"et_body_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_footer_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_footer_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_footer_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_footer_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_footer_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_footer_layout&name=$matches[1]&embed=true\";s:37:\"et_footer_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_footer_layout&name=$matches[1]&tb=1\";s:45:\"et_footer_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_footer_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_footer_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_footer_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_footer_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_footer_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_footer_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_footer_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=9&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:1:{i:0;s:65:\"review-widgets-for-tripadvisor/review-widgets-for-tripadvisor.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','56657','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','9','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1722994534','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'wp_attachment_pages_enabled','0','yes'),(100,'initial_db_version','56657','yes'),(101,'wp7riu_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:67:{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:17:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(102,'fresh_site','0','yes'),(103,'user_count','1','no'),(104,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(105,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(106,'cron','a:8:{i:1710833734;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1710855334;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:1710875543;a:4:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1710898534;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1711048574;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1711157734;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1713208603;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'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'recovery_keys','a:0:{}','yes'),(122,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1708024603;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(123,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.3\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(125,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.3\";s:7:\"version\";s:5:\"6.4.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1710833616;s:15:\"version_checked\";s:5:\"6.4.3\";s:12:\"translations\";a:0:{}}','no'),(137,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":4,\"critical\":0}','yes'),(143,'category_children','a:0:{}','yes'),(161,'can_compress_scripts','1','yes'),(170,'finished_updating_comment_type','1','yes'),(183,'recently_activated','a:1:{s:29:\"widget-google-reviews/grw.php\";i:1708825531;}','yes'),(187,'current_theme','Divi','yes'),(188,'theme_mods_Divi','a:5:{i:0;b:0;s:18:\"custom_css_post_id\";i:68;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:3:{s:12:\"primary-menu\";i:7;s:14:\"secondary-menu\";i:0;s:11:\"footer-menu\";i:0;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";}','yes'),(189,'theme_switched','','yes'),(190,'et_pb_cache_notice','a:1:{s:6:\"4.22.0\";s:6:\"ignore\";}','yes'),(195,'et_core_version','4.22.0','yes'),(197,'et_divi','a:174:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:29:\"presets_storage_migrated_flag\";b:1;s:39:\"builder_global_presets_history_migrated\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:6:\"4.22.0\";s:31:\"divi_previous_installed_version\";s:0:\"\";s:29:\"divi_latest_installed_version\";s:6:\"4.22.0\";s:27:\"divi_skip_font_subset_force\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:23:\"builder_custom_defaults\";O:8:\"stdClass\":0:{}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:29:\"custom_defaults_migrated_flag\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:16:\"et_global_colors\";a:11:{s:41:\"gcid-b247d7e9-2bbc-48fc-81a8-3cd1da3da572\";a:2:{s:5:\"color\";s:7:\"#dca47d\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-cda4471f-892e-4743-849d-2cb3737a1499\";a:2:{s:5:\"color\";s:7:\"#c99872\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-8791e582-6981-4487-b2f5-5067d56b420f\";a:2:{s:5:\"color\";s:7:\"#342929\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-c2e9b643-6fa1-4310-9c9b-bd34c0e5f1b3\";a:2:{s:5:\"color\";s:7:\"#1d140b\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-59929c70-f34a-463a-a759-427bf611fec4\";a:2:{s:5:\"color\";s:7:\"#1d2528\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-937824ca-e831-46c6-b7e2-284fc452a523\";a:2:{s:5:\"color\";s:7:\"#f5f5f5\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";a:2:{s:5:\"color\";s:7:\"#dcff77\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";a:2:{s:5:\"color\";s:7:\"#acade8\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\";a:2:{s:5:\"color\";s:7:\"#666666\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\";a:2:{s:5:\"color\";s:7:\"#8c8eff\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\";a:2:{s:5:\"color\";s:7:\"#00b2a3\";s:6:\"active\";s:3:\"yes\";}}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:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:46:\"et_fb_pref_builder_enable_visual_theme_builder\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";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:400;s:27:\"et_fb_pref_modal_position_x\";i:1680;s:27:\"et_fb_pref_modal_position_y\";i:355;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:36:\"et_fb_pref_lv_modal_dimension_height\";i:0;s:35:\"et_fb_pref_lv_modal_dimension_width\";i:0;s:30:\"et_fb_pref_lv_modal_position_x\";i:0;s:30:\"et_fb_pref_lv_modal_position_y\";i:0;s:34:\"et_fb_pref_responsive_tablet_width\";i:768;s:35:\"et_fb_pref_responsive_tablet_height\";i:0;s:33:\"et_fb_pref_responsive_phone_width\";i:400;s:34:\"et_fb_pref_responsive_phone_height\";i:0;s:35:\"et_fb_pref_responsive_minimum_width\";i:320;s:35:\"et_fb_pref_responsive_maximum_width\";i:980;s:9:\"divi_logo\";s:126:\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/370086272_2386337848225386_5064394146587414344_n.jpg\";s:14:\"divi_fixed_nav\";s:2:\"on\";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:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:24:\"divi_show_instagram_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:18:\"divi_instagram_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: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:29:\"divi_enable_responsive_images\";s:2:\"on\";s:15:\"divi_custom_css\";s:0:\"\";s:29:\"divi_dynamic_module_framework\";s:2:\"on\";s:16:\"divi_dynamic_css\";s:2:\"on\";s:18:\"divi_dynamic_icons\";s:2:\"on\";s:22:\"divi_inline_stylesheet\";s:2:\"on\";s:17:\"divi_critical_css\";s:2:\"on\";s:30:\"divi_critical_threshold_height\";s:6:\"Medium\";s:25:\"divi_dynamic_js_libraries\";s:2:\"on\";s:19:\"divi_disable_emojis\";s:2:\"on\";s:20:\"divi_defer_block_css\";s:2:\"on\";s:24:\"divi_google_fonts_inline\";s:5:\"false\";s:51:\"divi_limit_google_fonts_support_for_legacy_browsers\";s:2:\"on\";s:23:\"divi_enable_jquery_body\";s:2:\"on\";s:32:\"divi_enable_jquery_compatibility\";s:2:\"on\";s:29:\"divi_enable_jquery_body_super\";s:5:\"false\";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:27:\"et_pb_post_type_integration\";a:3:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";}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:24:\"et_enable_classic_editor\";s:3:\"off\";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:12:\"header_style\";s:4:\"left\";s:13:\"nav_fullwidth\";b:0;s:11:\"menu_height\";i:101;s:9:\"menu_link\";s:21:\"rgba(255,255,255,0.6)\";s:16:\"menu_link_active\";s:7:\"#50b2aa\";s:14:\"primary_nav_bg\";s:7:\"#000000\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#50b2aa\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:21:\"custom_footer_credits\";s:83:\"Mona\'s Lagoon Charters | Copyright © 2024 | Website designed by  Haus of Skai Ltd \";s:24:\"show_footer_social_icons\";b:0;s:22:\"primary_nav_font_style\";s:9:\"uppercase\";s:11:\"logo_height\";i:100;s:16:\"show_search_icon\";b:0;}','yes'),(198,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(199,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(200,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(201,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(202,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(203,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(204,'et_safe_mode_plugins_allowlist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(205,'et_support_center_installed','true','yes'),(206,'et_images_temp_folder','/home/fef26c5/public_html/moanalagooncharters/wp-content/uploads/et_temp','yes'),(207,'et_schedule_clean_images_last_time','1710589771','yes'),(208,'et_bfb_settings','a:2:{s:10:\"enable_bfb\";s:2:\"on\";s:10:\"toggle_bfb\";s:2:\"on\";}','yes'),(209,'_transient_et_builder_show_bfb_welcome_modal','1','yes'),(210,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(211,'et_divi_builder_global_presets_ng','O:8:\"stdClass\":8:{s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":55:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Text Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H1\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"00643d84-dcae-41a8-8e70-96036a3cce67\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H2\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"b96d578c-62ca-4f8d-905b-a9230de35875\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H6\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"83b8f15e-b35a-47db-a664-86b0f6c92d95\";O:8:\"stdClass\":6:{s:4:\"name\";s:4:\"Body\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"f8bd34ae-4b6d-489d-b54e-b24bf7e3a373\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H5\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"186324f1-6501-4953-948a-edc279b6232c\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H4\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"672cc016-07a8-4fcc-b509-20b09fd79843\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"H2 as H1\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"509adb35-2a90-4829-81c1-bb797d731452\";O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"Body Large\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"215856bf-bf18-40b5-817f-5465924e09f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H3\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"d674f17b-3628-435f-94a3-cd5f46b9d033\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"5d81cd22-fce7-4502-b00e-c37030b45472\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"010abe8a-2497-43e9-a38c-3ff16363a834\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"fc91ad6f-aa0b-4f08-b6c2-118756bd94c8\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"bd8161b9-8c84-401a-830e-388346bc15c8\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"6a1c1e72-6780-430f-832d-659bf4b27bec\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"0dbbce98-519d-4943-b773-d60dcb279919\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"e6d78240-65d6-4bab-b3b4-3aa3a6cc9f64\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"06b5a82c-8228-4e73-8b88-499de56b729b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"6740cd1b-b368-4767-b764-1929f3cfc9f2\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"f958470c-c0ae-4529-81d8-52d5ec2ccc3a\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"971aec52-ca21-45a5-a7c5-925c25be5a16\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"ad97e3fe-45fd-414e-b7e5-23af51659d4d\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"970f1f89-5d48-433e-a6f4-a5e1ebca7a56\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"b54150a7-980a-4ab5-a295-419fc76ff00a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"dbd38a3e-6a4d-4336-b5a8-208838ec5d57\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"95bcb655-38ea-4072-a99d-2ebec6f03a06\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"a773186e-f0f0-41cc-9be2-c26bd871509e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"4248a975-44b9-413a-8b65-20de629807e0\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"7d61e70e-f5d9-4787-a01a-471e4143bb55\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"70bc472d-d3cd-4502-ac1f-4220fc737f24\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"4cd9de35-c6df-4ede-9ff5-41aef1234fde\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"22f766d9-68d8-441e-838f-678766e9c111\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"291e9a82-88d5-43bf-ab2d-7caac092311e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"78be073c-b066-4698-9434-3a56327e89dc\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"a4abe828-ce13-4ee4-9df4-a8d1faf1076e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"c2354cf3-3678-4ce8-880d-024e0a39bc66\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"8bffbf19-9ce7-4479-9d5e-42c11c09883b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"59d8c0c4-96e2-4a88-b58a-b61f701697d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"a42889e7-6166-40ea-8e9d-8eccdd7260ea\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"8d03d1ab-4453-44d6-a00c-7ad7396ce2b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"0b8c096d-6baa-4813-b7e7-150858526074\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"27938d5f-de6a-42b9-9f90-ef2032656d20\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"86410e26-4f52-437b-a078-bb846557564e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"d84ef971-31dd-4395-9937-44aa895b4a7a\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"be5444d7-05ac-4a10-8bdb-b319b9ad1cae\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"96e6adda-66ac-45e5-9268-a4dcff0f2430\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"47c2b160-80f8-4d1f-8137-07c2977d6318\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"655320c2-42ad-4ae5-afb0-30a99a8117b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"aaea2038-1232-4b51-bfee-c53ed7d702cb\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":19:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Blurb Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"896d557e-f9fe-4983-99dc-d0937100c5bf\";O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Icon Left\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"35d6b2c2-8fb8-4e22-ad79-61e3ecfb122e\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Top Contained\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"2dcac598-5e3d-464b-980e-ae21cae0e261\";O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"Image Left\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"6531be83-4669-4f5f-b201-fcdbad7052c1\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"192b9b4d-3b46-4d55-a9f1-6b9485dc0d55\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"32a27f3d-309c-4eae-8ab7-ae580fd61778\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"233c4979-1a77-42a1-99c2-b793530679f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"857e13ef-dcde-49ce-9246-9670393069e6\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"49ed37c8-c8e5-4b37-ad4a-617fbbc3027d\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"364e02b8-a0b2-4193-9ccd-33aac0835d30\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"bcfbf70c-b4c2-422e-8573-e6554c3f511b\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"4bfba2b2-0e30-4520-99f8-8564bc46c57e\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"970d757f-d6e3-4f31-a95e-4ec6aa6e6668\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"edbf2180-e729-4255-bc12-38f1a688682a\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"851ef7c8-498f-4b8f-8a5b-4a21adafc3d0\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"93b348ef-2c83-457c-ab02-7761e857b4f9\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"d2284cb5-16f3-42a4-9dbc-f725bf05e27a\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"d5c18f94-92d7-49a5-8673-c1050b8caec9\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Contact Form Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0edd7b6f-2012-409f-9d51-8250f2cfa96b\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"ca321484-e364-4b3b-8254-39af48bb3eb4\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"3a677757-f07e-4f59-a402-5a7bf1781588\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"992e0081-d85e-4e8b-a935-91a971f8028a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"495139a3-4fde-42da-a2d6-b6abdbdb0db4\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"97fe88bd-5948-4afe-b0c7-aed177aef606\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Accordion Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2da32ff3-d899-41cb-8ae1-d6fba5b210c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"1481f2a1-6bbf-4b61-a93a-9fdde744cff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"a272db56-74b3-4416-9fc2-8bc516f995f9\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"225e3be5-a1a3-425b-84bb-be05063cb371\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"703b9ed6-1057-406e-a40f-bae0e069e8ca\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"900aad7e-927d-4b95-8342-f7c1cde8262c\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":19:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Button Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"771a57af-8ee7-4a06-bf57-a769e5caeac2\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Primary Light\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"9f356325-262b-433a-8486-c05bab520798\";O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Secondary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"349ef676-0dc8-4f6a-8211-812ee2f3e626\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"eaccb100-59be-44f1-ba38-b6b438925085\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"d2a12ef6-278e-44ed-8514-bb2f2133e927\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"e642c0f4-54a2-403c-b5c1-34e6215535db\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"c57c41da-16b0-4247-9a75-fcbc3d2134d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"7b8338ee-bfdf-4696-99c6-75f6db90b574\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"4dd73b2d-4cb8-4023-a177-a6f8450ad51a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"ff4382f7-c40e-44c6-98cc-c937c2a74c64\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"2f4db3ea-1c4a-4ff1-a9cd-4c2617bd2788\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"385940f1-a0b6-4cea-8c13-4e7464612147\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"fa9a46f1-d3cb-4506-ac13-dc3cbcbf4fb9\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"7717e50d-ed59-49bc-9bf0-53e3ba42a84a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"b838ce4c-0f0d-47e2-9f9a-f051f11a27d8\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"b2349011-32fc-470a-aaa5-ad612d95ce91\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Blog Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"42f725a3-9975-4e46-9b23-e2c9993189a2\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9513cb19-1459-4a27-a14c-88cb836f6449\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9e5307de-197b-48fa-8ddf-fd8ec765495b\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9786e8b8-a33e-404d-ad86-a817bf9fa7b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"cbe00859-49fc-4b9f-82f8-864b73a9cfdd\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"8193b3ef-7445-4ac3-8236-1f50900d8aaa\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Email Optin Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8445a219-6d49-4e07-b7b8-4039854e0e9e\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Primary Light\";s:7:\"created\";i:1708669238948;s:7:\"updated\";i:1708669238948;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"59cae1dd-273b-48e2-af7e-b4c60b1d395c\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"711aa0c8-1d69-4762-b4dc-d464bd2a149d\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"90482f97-d726-4b4f-999e-3f73bad5618f\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"465ed86c-6339-41dd-b1e2-1e619d576106\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"e8903491-33d2-40ae-ba80-4449f28eac4f\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6e937ddc-c33d-4c28-b79c-8238268d4f82\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238948;s:7:\"updated\";i:1708669238948;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"60864134-0b1d-4679-9ef4-07685a5cb28b\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"213d91bc-6f6c-452a-b367-cc347b792a1a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"4fb5480d-2b80-48cc-8a7a-719139556b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"9f4f4992-dfe0-4e02-9d23-d831dd7283f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"2a7724d1-8cfa-4323-8806-bbda670e8649\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}}','no'),(212,'et_support_center_setup_done','processed','yes'),(218,'et_automatic_updates_options','a:2:{s:8:\"username\";s:7:\"Vonnias\";s:7:\"api_key\";s:40:\"237b872b80cf2978f15d468f8f3c8b91d0227e69\";}','no'),(219,'et_account_status','active','no'),(220,'et_support_site_id','nXQ=GVmJbt0pUh4+yZkB','yes'),(222,'et_pb_signup_f7943f89c62f5e26cb5ce383a603160f','off','yes'),(358,'et_divi_builder_global_presets_history_ng','O:8:\"stdClass\":2:{s:7:\"history\";a:3:{i:0;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":8:{s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":55:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Text Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H1\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"00643d84-dcae-41a8-8e70-96036a3cce67\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H2\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"b96d578c-62ca-4f8d-905b-a9230de35875\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H6\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"83b8f15e-b35a-47db-a664-86b0f6c92d95\";O:8:\"stdClass\":6:{s:4:\"name\";s:4:\"Body\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"f8bd34ae-4b6d-489d-b54e-b24bf7e3a373\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H5\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"186324f1-6501-4953-948a-edc279b6232c\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H4\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"672cc016-07a8-4fcc-b509-20b09fd79843\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"H2 as H1\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"509adb35-2a90-4829-81c1-bb797d731452\";O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"Body Large\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"215856bf-bf18-40b5-817f-5465924e09f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H3\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"d674f17b-3628-435f-94a3-cd5f46b9d033\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"5d81cd22-fce7-4502-b00e-c37030b45472\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"010abe8a-2497-43e9-a38c-3ff16363a834\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"fc91ad6f-aa0b-4f08-b6c2-118756bd94c8\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"bd8161b9-8c84-401a-830e-388346bc15c8\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"6a1c1e72-6780-430f-832d-659bf4b27bec\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"0dbbce98-519d-4943-b773-d60dcb279919\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"e6d78240-65d6-4bab-b3b4-3aa3a6cc9f64\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"06b5a82c-8228-4e73-8b88-499de56b729b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"6740cd1b-b368-4767-b764-1929f3cfc9f2\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"f958470c-c0ae-4529-81d8-52d5ec2ccc3a\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"971aec52-ca21-45a5-a7c5-925c25be5a16\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"ad97e3fe-45fd-414e-b7e5-23af51659d4d\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"970f1f89-5d48-433e-a6f4-a5e1ebca7a56\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"b54150a7-980a-4ab5-a295-419fc76ff00a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"dbd38a3e-6a4d-4336-b5a8-208838ec5d57\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"95bcb655-38ea-4072-a99d-2ebec6f03a06\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"a773186e-f0f0-41cc-9be2-c26bd871509e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"4248a975-44b9-413a-8b65-20de629807e0\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"7d61e70e-f5d9-4787-a01a-471e4143bb55\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"70bc472d-d3cd-4502-ac1f-4220fc737f24\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"4cd9de35-c6df-4ede-9ff5-41aef1234fde\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"22f766d9-68d8-441e-838f-678766e9c111\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"291e9a82-88d5-43bf-ab2d-7caac092311e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"78be073c-b066-4698-9434-3a56327e89dc\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"a4abe828-ce13-4ee4-9df4-a8d1faf1076e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"c2354cf3-3678-4ce8-880d-024e0a39bc66\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"8bffbf19-9ce7-4479-9d5e-42c11c09883b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"59d8c0c4-96e2-4a88-b58a-b61f701697d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"a42889e7-6166-40ea-8e9d-8eccdd7260ea\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"8d03d1ab-4453-44d6-a00c-7ad7396ce2b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"0b8c096d-6baa-4813-b7e7-150858526074\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"27938d5f-de6a-42b9-9f90-ef2032656d20\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"86410e26-4f52-437b-a078-bb846557564e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"d84ef971-31dd-4395-9937-44aa895b4a7a\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"be5444d7-05ac-4a10-8bdb-b319b9ad1cae\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"96e6adda-66ac-45e5-9268-a4dcff0f2430\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"47c2b160-80f8-4d1f-8137-07c2977d6318\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"655320c2-42ad-4ae5-afb0-30a99a8117b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"aaea2038-1232-4b51-bfee-c53ed7d702cb\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":19:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Blurb Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"896d557e-f9fe-4983-99dc-d0937100c5bf\";O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Icon Left\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"35d6b2c2-8fb8-4e22-ad79-61e3ecfb122e\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Top Contained\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"2dcac598-5e3d-464b-980e-ae21cae0e261\";O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"Image Left\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"6531be83-4669-4f5f-b201-fcdbad7052c1\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"192b9b4d-3b46-4d55-a9f1-6b9485dc0d55\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"32a27f3d-309c-4eae-8ab7-ae580fd61778\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"233c4979-1a77-42a1-99c2-b793530679f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"857e13ef-dcde-49ce-9246-9670393069e6\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"49ed37c8-c8e5-4b37-ad4a-617fbbc3027d\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"364e02b8-a0b2-4193-9ccd-33aac0835d30\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"bcfbf70c-b4c2-422e-8573-e6554c3f511b\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"4bfba2b2-0e30-4520-99f8-8564bc46c57e\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"970d757f-d6e3-4f31-a95e-4ec6aa6e6668\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"edbf2180-e729-4255-bc12-38f1a688682a\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"851ef7c8-498f-4b8f-8a5b-4a21adafc3d0\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"93b348ef-2c83-457c-ab02-7761e857b4f9\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"d2284cb5-16f3-42a4-9dbc-f725bf05e27a\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"d5c18f94-92d7-49a5-8673-c1050b8caec9\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Contact Form Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0edd7b6f-2012-409f-9d51-8250f2cfa96b\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"ca321484-e364-4b3b-8254-39af48bb3eb4\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"3a677757-f07e-4f59-a402-5a7bf1781588\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"992e0081-d85e-4e8b-a935-91a971f8028a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"495139a3-4fde-42da-a2d6-b6abdbdb0db4\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"97fe88bd-5948-4afe-b0c7-aed177aef606\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Accordion Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2da32ff3-d899-41cb-8ae1-d6fba5b210c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"1481f2a1-6bbf-4b61-a93a-9fdde744cff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"a272db56-74b3-4416-9fc2-8bc516f995f9\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"225e3be5-a1a3-425b-84bb-be05063cb371\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"703b9ed6-1057-406e-a40f-bae0e069e8ca\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"900aad7e-927d-4b95-8342-f7c1cde8262c\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":19:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Button Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"771a57af-8ee7-4a06-bf57-a769e5caeac2\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Primary Light\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"9f356325-262b-433a-8486-c05bab520798\";O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Secondary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"349ef676-0dc8-4f6a-8211-812ee2f3e626\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"eaccb100-59be-44f1-ba38-b6b438925085\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"d2a12ef6-278e-44ed-8514-bb2f2133e927\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"e642c0f4-54a2-403c-b5c1-34e6215535db\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"c57c41da-16b0-4247-9a75-fcbc3d2134d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"7b8338ee-bfdf-4696-99c6-75f6db90b574\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"4dd73b2d-4cb8-4023-a177-a6f8450ad51a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"ff4382f7-c40e-44c6-98cc-c937c2a74c64\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"2f4db3ea-1c4a-4ff1-a9cd-4c2617bd2788\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"385940f1-a0b6-4cea-8c13-4e7464612147\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"fa9a46f1-d3cb-4506-ac13-dc3cbcbf4fb9\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"7717e50d-ed59-49bc-9bf0-53e3ba42a84a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"b838ce4c-0f0d-47e2-9f9a-f051f11a27d8\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"b2349011-32fc-470a-aaa5-ad612d95ce91\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Blog Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"42f725a3-9975-4e46-9b23-e2c9993189a2\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9513cb19-1459-4a27-a14c-88cb836f6449\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9e5307de-197b-48fa-8ddf-fd8ec765495b\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9786e8b8-a33e-404d-ad86-a817bf9fa7b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"cbe00859-49fc-4b9f-82f8-864b73a9cfdd\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"8193b3ef-7445-4ac3-8236-1f50900d8aaa\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Email Optin Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8445a219-6d49-4e07-b7b8-4039854e0e9e\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Primary Light\";s:7:\"created\";i:1708669238948;s:7:\"updated\";i:1708669238948;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"59cae1dd-273b-48e2-af7e-b4c60b1d395c\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"711aa0c8-1d69-4762-b4dc-d464bd2a149d\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"90482f97-d726-4b4f-999e-3f73bad5618f\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"465ed86c-6339-41dd-b1e2-1e619d576106\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"e8903491-33d2-40ae-ba80-4449f28eac4f\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6e937ddc-c33d-4c28-b79c-8238268d4f82\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238948;s:7:\"updated\";i:1708669238948;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"60864134-0b1d-4679-9ef4-07685a5cb28b\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"213d91bc-6f6c-452a-b367-cc347b792a1a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"4fb5480d-2b80-48cc-8a7a-719139556b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"9f4f4992-dfe0-4e02-9d23-d831dd7283f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"2a7724d1-8cfa-4323-8806-bbda670e8649\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}}s:4:\"time\";i:1708826380608;s:5:\"label\";s:20:\"Imported From Layout\";}i:1;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":8:{s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":55:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Text Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H1\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"00643d84-dcae-41a8-8e70-96036a3cce67\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H2\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"b96d578c-62ca-4f8d-905b-a9230de35875\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H6\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"83b8f15e-b35a-47db-a664-86b0f6c92d95\";O:8:\"stdClass\":6:{s:4:\"name\";s:4:\"Body\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"f8bd34ae-4b6d-489d-b54e-b24bf7e3a373\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H5\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"186324f1-6501-4953-948a-edc279b6232c\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H4\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"672cc016-07a8-4fcc-b509-20b09fd79843\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"H2 as H1\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"509adb35-2a90-4829-81c1-bb797d731452\";O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"Body Large\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"215856bf-bf18-40b5-817f-5465924e09f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H3\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"d674f17b-3628-435f-94a3-cd5f46b9d033\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"5d81cd22-fce7-4502-b00e-c37030b45472\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"010abe8a-2497-43e9-a38c-3ff16363a834\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"fc91ad6f-aa0b-4f08-b6c2-118756bd94c8\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"bd8161b9-8c84-401a-830e-388346bc15c8\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"6a1c1e72-6780-430f-832d-659bf4b27bec\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"0dbbce98-519d-4943-b773-d60dcb279919\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"e6d78240-65d6-4bab-b3b4-3aa3a6cc9f64\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"06b5a82c-8228-4e73-8b88-499de56b729b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"6740cd1b-b368-4767-b764-1929f3cfc9f2\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"f958470c-c0ae-4529-81d8-52d5ec2ccc3a\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"971aec52-ca21-45a5-a7c5-925c25be5a16\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"ad97e3fe-45fd-414e-b7e5-23af51659d4d\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"970f1f89-5d48-433e-a6f4-a5e1ebca7a56\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"b54150a7-980a-4ab5-a295-419fc76ff00a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"dbd38a3e-6a4d-4336-b5a8-208838ec5d57\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"95bcb655-38ea-4072-a99d-2ebec6f03a06\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"a773186e-f0f0-41cc-9be2-c26bd871509e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"4248a975-44b9-413a-8b65-20de629807e0\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"7d61e70e-f5d9-4787-a01a-471e4143bb55\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"70bc472d-d3cd-4502-ac1f-4220fc737f24\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"4cd9de35-c6df-4ede-9ff5-41aef1234fde\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"22f766d9-68d8-441e-838f-678766e9c111\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"291e9a82-88d5-43bf-ab2d-7caac092311e\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"78be073c-b066-4698-9434-3a56327e89dc\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"a4abe828-ce13-4ee4-9df4-a8d1faf1076e\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"c2354cf3-3678-4ce8-880d-024e0a39bc66\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"8bffbf19-9ce7-4479-9d5e-42c11c09883b\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"59d8c0c4-96e2-4a88-b58a-b61f701697d6\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"a42889e7-6166-40ea-8e9d-8eccdd7260ea\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"8d03d1ab-4453-44d6-a00c-7ad7396ce2b2\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"0b8c096d-6baa-4813-b7e7-150858526074\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"27938d5f-de6a-42b9-9f90-ef2032656d20\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"86410e26-4f52-437b-a078-bb846557564e\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"d84ef971-31dd-4395-9937-44aa895b4a7a\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"be5444d7-05ac-4a10-8bdb-b319b9ad1cae\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"96e6adda-66ac-45e5-9268-a4dcff0f2430\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"47c2b160-80f8-4d1f-8137-07c2977d6318\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"655320c2-42ad-4ae5-afb0-30a99a8117b2\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"aaea2038-1232-4b51-bfee-c53ed7d702cb\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":19:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Blurb Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"896d557e-f9fe-4983-99dc-d0937100c5bf\";O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Icon Left\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"35d6b2c2-8fb8-4e22-ad79-61e3ecfb122e\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Top Contained\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"2dcac598-5e3d-464b-980e-ae21cae0e261\";O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"Image Left\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"6531be83-4669-4f5f-b201-fcdbad7052c1\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"192b9b4d-3b46-4d55-a9f1-6b9485dc0d55\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"32a27f3d-309c-4eae-8ab7-ae580fd61778\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"233c4979-1a77-42a1-99c2-b793530679f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"857e13ef-dcde-49ce-9246-9670393069e6\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"49ed37c8-c8e5-4b37-ad4a-617fbbc3027d\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"364e02b8-a0b2-4193-9ccd-33aac0835d30\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"bcfbf70c-b4c2-422e-8573-e6554c3f511b\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"4bfba2b2-0e30-4520-99f8-8564bc46c57e\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"970d757f-d6e3-4f31-a95e-4ec6aa6e6668\";O:8:\"stdClass\":5:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"edbf2180-e729-4255-bc12-38f1a688682a\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"851ef7c8-498f-4b8f-8a5b-4a21adafc3d0\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"93b348ef-2c83-457c-ab02-7761e857b4f9\";O:8:\"stdClass\":5:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"d2284cb5-16f3-42a4-9dbc-f725bf05e27a\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"d5c18f94-92d7-49a5-8673-c1050b8caec9\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Contact Form Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0edd7b6f-2012-409f-9d51-8250f2cfa96b\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"ca321484-e364-4b3b-8254-39af48bb3eb4\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"3a677757-f07e-4f59-a402-5a7bf1781588\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"992e0081-d85e-4e8b-a935-91a971f8028a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"495139a3-4fde-42da-a2d6-b6abdbdb0db4\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";}}s:36:\"97fe88bd-5948-4afe-b0c7-aed177aef606\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";}}}s:7:\"default\";s:8:\"_initial\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Accordion Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2da32ff3-d899-41cb-8ae1-d6fba5b210c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"1481f2a1-6bbf-4b61-a93a-9fdde744cff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"a272db56-74b3-4416-9fc2-8bc516f995f9\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"225e3be5-a1a3-425b-84bb-be05063cb371\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"703b9ed6-1057-406e-a40f-bae0e069e8ca\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"900aad7e-927d-4b95-8342-f7c1cde8262c\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":19:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Button Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"771a57af-8ee7-4a06-bf57-a769e5caeac2\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Primary Light\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"9f356325-262b-433a-8486-c05bab520798\";O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Secondary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"349ef676-0dc8-4f6a-8211-812ee2f3e626\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"eaccb100-59be-44f1-ba38-b6b438925085\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"d2a12ef6-278e-44ed-8514-bb2f2133e927\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"e642c0f4-54a2-403c-b5c1-34e6215535db\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"c57c41da-16b0-4247-9a75-fcbc3d2134d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"7b8338ee-bfdf-4696-99c6-75f6db90b574\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"4dd73b2d-4cb8-4023-a177-a6f8450ad51a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"ff4382f7-c40e-44c6-98cc-c937c2a74c64\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"2f4db3ea-1c4a-4ff1-a9cd-4c2617bd2788\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"385940f1-a0b6-4cea-8c13-4e7464612147\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"fa9a46f1-d3cb-4506-ac13-dc3cbcbf4fb9\";O:8:\"stdClass\":5:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"7717e50d-ed59-49bc-9bf0-53e3ba42a84a\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"b838ce4c-0f0d-47e2-9f9a-f051f11a27d8\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"b2349011-32fc-470a-aaa5-ad612d95ce91\";O:8:\"stdClass\":5:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Blog Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"42f725a3-9975-4e46-9b23-e2c9993189a2\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9513cb19-1459-4a27-a14c-88cb836f6449\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9e5307de-197b-48fa-8ddf-fd8ec765495b\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9786e8b8-a33e-404d-ad86-a817bf9fa7b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"cbe00859-49fc-4b9f-82f8-864b73a9cfdd\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:41:\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"8193b3ef-7445-4ac3-8236-1f50900d8aaa\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:41:\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Email Optin Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8445a219-6d49-4e07-b7b8-4039854e0e9e\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Primary Light\";s:7:\"created\";i:1708669238948;s:7:\"updated\";i:1708669238948;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"59cae1dd-273b-48e2-af7e-b4c60b1d395c\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"711aa0c8-1d69-4762-b4dc-d464bd2a149d\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"90482f97-d726-4b4f-999e-3f73bad5618f\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"465ed86c-6339-41dd-b1e2-1e619d576106\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";}}s:36:\"e8903491-33d2-40ae-ba80-4449f28eac4f\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6e937ddc-c33d-4c28-b79c-8238268d4f82\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238948;s:7:\"updated\";i:1708669238948;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"60864134-0b1d-4679-9ef4-07685a5cb28b\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"213d91bc-6f6c-452a-b367-cc347b792a1a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"4fb5480d-2b80-48cc-8a7a-719139556b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"9f4f4992-dfe0-4e02-9d23-d831dd7283f1\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:41:\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:41:\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";}}s:36:\"2a7724d1-8cfa-4323-8806-bbda670e8649\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:41:\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:41:\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:41:\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:41:\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\";}}}s:7:\"default\";s:8:\"_initial\";}}s:4:\"time\";i:1708811976885;s:5:\"label\";s:20:\"Imported From Layout\";}i:2;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":8:{s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":62:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Text Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H1\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"00643d84-dcae-41a8-8e70-96036a3cce67\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H2\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"b96d578c-62ca-4f8d-905b-a9230de35875\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H6\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"83b8f15e-b35a-47db-a664-86b0f6c92d95\";O:8:\"stdClass\":6:{s:4:\"name\";s:4:\"Body\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"f8bd34ae-4b6d-489d-b54e-b24bf7e3a373\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H5\";s:7:\"created\";i:1708669238945;s:7:\"updated\";i:1708669238945;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"186324f1-6501-4953-948a-edc279b6232c\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H4\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"672cc016-07a8-4fcc-b509-20b09fd79843\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"H2 as H1\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"509adb35-2a90-4829-81c1-bb797d731452\";O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"Body Large\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"215856bf-bf18-40b5-817f-5465924e09f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:2:\"H3\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"d674f17b-3628-435f-94a3-cd5f46b9d033\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"5d81cd22-fce7-4502-b00e-c37030b45472\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"010abe8a-2497-43e9-a38c-3ff16363a834\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"fc91ad6f-aa0b-4f08-b6c2-118756bd94c8\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"bd8161b9-8c84-401a-830e-388346bc15c8\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"6a1c1e72-6780-430f-832d-659bf4b27bec\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"0dbbce98-519d-4943-b773-d60dcb279919\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"e6d78240-65d6-4bab-b3b4-3aa3a6cc9f64\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"06b5a82c-8228-4e73-8b88-499de56b729b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"6740cd1b-b368-4767-b764-1929f3cfc9f2\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"f958470c-c0ae-4529-81d8-52d5ec2ccc3a\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"971aec52-ca21-45a5-a7c5-925c25be5a16\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"ad97e3fe-45fd-414e-b7e5-23af51659d4d\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"970f1f89-5d48-433e-a6f4-a5e1ebca7a56\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"b54150a7-980a-4ab5-a295-419fc76ff00a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"dbd38a3e-6a4d-4336-b5a8-208838ec5d57\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"95bcb655-38ea-4072-a99d-2ebec6f03a06\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"a773186e-f0f0-41cc-9be2-c26bd871509e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"4248a975-44b9-413a-8b65-20de629807e0\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"7d61e70e-f5d9-4787-a01a-471e4143bb55\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"70bc472d-d3cd-4502-ac1f-4220fc737f24\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"4cd9de35-c6df-4ede-9ff5-41aef1234fde\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708810456119;s:7:\"updated\";i:1708810456119;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"22f766d9-68d8-441e-838f-678766e9c111\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"291e9a82-88d5-43bf-ab2d-7caac092311e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"78be073c-b066-4698-9434-3a56327e89dc\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"a4abe828-ce13-4ee4-9df4-a8d1faf1076e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"c2354cf3-3678-4ce8-880d-024e0a39bc66\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"8bffbf19-9ce7-4479-9d5e-42c11c09883b\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"59d8c0c4-96e2-4a88-b58a-b61f701697d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"a42889e7-6166-40ea-8e9d-8eccdd7260ea\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"8d03d1ab-4453-44d6-a00c-7ad7396ce2b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"0b8c096d-6baa-4813-b7e7-150858526074\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708811802847;s:7:\"updated\";i:1708811802847;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"27938d5f-de6a-42b9-9f90-ef2032656d20\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_line_height\";s:5:\"1.2em\";s:16:\"header_font_size\";s:3:\"5vw\";}}s:36:\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";}}s:36:\"86410e26-4f52-437b-a078-bb846557564e\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";}}s:36:\"d84ef971-31dd-4395-9937-44aa895b4a7a\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"be5444d7-05ac-4a10-8bdb-b319b9ad1cae\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";}}s:36:\"96e6adda-66ac-45e5-9268-a4dcff0f2430\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H4 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";}}s:36:\"47c2b160-80f8-4d1f-8137-07c2977d6318\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"H2 as H1 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_2_font_size\";s:3:\"5vw\";}}s:36:\"655320c2-42ad-4ae5-afb0-30a99a8117b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"aaea2038-1232-4b51-bfee-c53ed7d702cb\";O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"H3 imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";}}s:36:\"0266c125-aad7-4214-845f-1b435e2f3312\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H1 imported\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:7:{s:11:\"header_font\";s:12:\"Oswald|||on|\";s:16:\"header_font_size\";s:4:\"80px\";s:23:\"header_font_size_tablet\";s:4:\"60px\";s:22:\"header_font_size_phone\";s:4:\"40px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:6:\"0.05em\";s:18:\"header_line_height\";s:5:\"1.5em\";}}s:36:\"cc29d952-68a4-4ff2-9e34-e49d4d70b443\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H5 imported\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:7:{s:13:\"header_5_font\";s:12:\"Oswald|||on|\";s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"15px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"1px\";s:20:\"header_5_line_height\";s:5:\"1.7em\";}}s:36:\"608124b4-74b5-4b50-afec-e37434a7a952\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H2 imported\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:7:{s:13:\"header_2_font\";s:16:\"Oswald|||on|||||\";s:18:\"header_2_font_size\";s:4:\"40px\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_2_letter_spacing\";s:3:\"1px\";s:20:\"header_2_line_height\";s:5:\"1.5em\";}}s:36:\"e15272e1-2b58-4923-8930-8ee61c7a5dcf\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Body Large imported\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:6:{s:9:\"text_font\";s:14:\"Nunito||||||||\";s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"text_line_height\";s:5:\"1.8em\";}}s:36:\"eed839f8-d8d0-4e11-879b-363595967257\";O:8:\"stdClass\":5:{s:4:\"name\";s:11:\"H6 imported\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:7:{s:13:\"header_6_font\";s:12:\"Oswald|||on|\";s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:9:\"on|tablet\";s:23:\"header_6_letter_spacing\";s:3:\"2px\";s:20:\"header_6_line_height\";s:5:\"1.7em\";}}s:36:\"949c9eb7-b5ae-4883-87c1-470c6e4fa4ca\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"H4 Subheading\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:5:{s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"15px\";s:23:\"header_4_letter_spacing\";s:3:\"1px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}s:36:\"ad7ed91d-d976-4993-a7a4-85505044aba9\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"Body imported\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:6:{s:9:\"text_font\";s:14:\"Nunito||||||||\";s:14:\"text_font_size\";s:4:\"16px\";s:21:\"text_font_size_tablet\";s:4:\"15px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"text_line_height\";s:5:\"1.8em\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":19:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Blurb Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"896d557e-f9fe-4983-99dc-d0937100c5bf\";O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Icon Left\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"35d6b2c2-8fb8-4e22-ad79-61e3ecfb122e\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Top Contained\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"2dcac598-5e3d-464b-980e-ae21cae0e261\";O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"Image Left\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"6531be83-4669-4f5f-b201-fcdbad7052c1\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"192b9b4d-3b46-4d55-a9f1-6b9485dc0d55\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"32a27f3d-309c-4eae-8ab7-ae580fd61778\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"233c4979-1a77-42a1-99c2-b793530679f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"857e13ef-dcde-49ce-9246-9670393069e6\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708807718603;s:7:\"updated\";i:1708807718603;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"49ed37c8-c8e5-4b37-ad4a-617fbbc3027d\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"364e02b8-a0b2-4193-9ccd-33aac0835d30\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"bcfbf70c-b4c2-422e-8573-e6554c3f511b\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"4bfba2b2-0e30-4520-99f8-8564bc46c57e\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"970d757f-d6e3-4f31-a95e-4ec6aa6e6668\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"edbf2180-e729-4255-bc12-38f1a688682a\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"851ef7c8-498f-4b8f-8a5b-4a21adafc3d0\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"93b348ef-2c83-457c-ab02-7761e857b4f9\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Icon Left imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"20px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"18px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";}}s:36:\"d2284cb5-16f3-42a4-9dbc-f725bf05e27a\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Image Top Contained imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"16px\";s:22:\"header_font_size_phone\";s:4:\"15px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:16:\"image_icon_width\";s:4:\"64px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}s:36:\"d5c18f94-92d7-49a5-8673-c1050b8caec9\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Image Left imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"60px\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Contact Form Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0edd7b6f-2012-409f-9d51-8250f2cfa96b\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"ca321484-e364-4b3b-8254-39af48bb3eb4\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"3a677757-f07e-4f59-a402-5a7bf1781588\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"992e0081-d85e-4e8b-a935-91a971f8028a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"495139a3-4fde-42da-a2d6-b6abdbdb0db4\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"97fe88bd-5948-4afe-b0c7-aed177aef606\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"2px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:92:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Accordion Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2da32ff3-d899-41cb-8ae1-d6fba5b210c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238946;s:7:\"updated\";i:1708669238946;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"1481f2a1-6bbf-4b61-a93a-9fdde744cff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"a272db56-74b3-4416-9fc2-8bc516f995f9\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"225e3be5-a1a3-425b-84bb-be05063cb371\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"703b9ed6-1057-406e-a40f-bae0e069e8ca\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}s:36:\"900aad7e-927d-4b95-8342-f7c1cde8262c\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:16:\"body_line_height\";s:5:\"1.6em\";s:16:\"border_width_all\";s:3:\"0px\";s:10:\"icon_color\";s:7:\"#000000\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"body_font_size\";s:4:\"16px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":20:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Button Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"771a57af-8ee7-4a06-bf57-a769e5caeac2\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Primary Light\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"9f356325-262b-433a-8486-c05bab520798\";O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Secondary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"349ef676-0dc8-4f6a-8211-812ee2f3e626\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"eaccb100-59be-44f1-ba38-b6b438925085\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708803797033;s:7:\"updated\";i:1708803797033;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"d2a12ef6-278e-44ed-8514-bb2f2133e927\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"e642c0f4-54a2-403c-b5c1-34e6215535db\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"c57c41da-16b0-4247-9a75-fcbc3d2134d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"7b8338ee-bfdf-4696-99c6-75f6db90b574\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"4dd73b2d-4cb8-4023-a177-a6f8450ad51a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"ff4382f7-c40e-44c6-98cc-c937c2a74c64\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"2f4db3ea-1c4a-4ff1-a9cd-4c2617bd2788\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"385940f1-a0b6-4cea-8c13-4e7464612147\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"fa9a46f1-d3cb-4506-ac13-dc3cbcbf4fb9\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"7717e50d-ed59-49bc-9bf0-53e3ba42a84a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976790;s:7:\"updated\";i:1708811976790;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:130:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"b838ce4c-0f0d-47e2-9f9a-f051f11a27d8\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:66:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\"]}\";}}s:36:\"b2349011-32fc-470a-aaa5-ad612d95ce91\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Secondary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:7:\"#dcff77\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:84:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\",\"box_shadow_color\"]}\";}}s:36:\"1e3a5575-e32b-4993-8a98-ebaababc9857\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:15:{s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"15px\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#dca47d\";s:22:\"button_bg_color__hover\";s:7:\"#c99872\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:19:\"button_border_width\";s:4:\"10px\";s:19:\"button_border_color\";s:7:\"#dca47d\";s:26:\"button_border_color__hover\";s:7:\"#c99872\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:20:\"button_border_radius\";s:3:\"0px\";s:21:\"button_letter_spacing\";s:5:\"0.2em\";s:11:\"button_font\";s:12:\"Oswald|||on|\";s:15:\"button_use_icon\";s:3:\"off\";s:18:\"global_colors_info\";s:187:\"{\"gcid-b247d7e9-2bbc-48fc-81a8-3cd1da3da572\":[\"button_bg_color\",\"button_border_color\"],\"gcid-cda4471f-892e-4743-849d-2cb3737a1499\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Blog Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"42f725a3-9975-4e46-9b23-e2c9993189a2\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238947;s:7:\"updated\";i:1708669238947;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9513cb19-1459-4a27-a14c-88cb836f6449\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9e5307de-197b-48fa-8ddf-fd8ec765495b\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"9786e8b8-a33e-404d-ad86-a817bf9fa7b2\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"cbe00859-49fc-4b9f-82f8-864b73a9cfdd\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"8193b3ef-7445-4ac3-8236-1f50900d8aaa\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:16:\"border_width_all\";s:3:\"0px\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:19:\"Oswald|700||on|||||\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:9:\"body_font\";s:12:\"Lato||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:18:\"global_colors_info\";s:65:\"{\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"meta_text_color\"]}\";}}s:36:\"a1ab688b-446f-433a-9c8d-2e6a8184d4ec\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708825885000;s:7:\"updated\";i:1708825885000;s:7:\"version\";s:6:\"4.21.0\";s:8:\"settings\";a:40:{s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:11:\"show_author\";s:3:\"off\";s:11:\"header_font\";s:12:\"Oswald|||on|\";s:17:\"header_text_align\";s:4:\"left\";s:17:\"header_text_color\";s:7:\"#342929\";s:16:\"header_font_size\";s:4:\"16px\";s:23:\"header_font_size_tablet\";s:4:\"15px\";s:22:\"header_font_size_phone\";s:4:\"14px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"1px\";s:18:\"header_line_height\";s:5:\"1.5em\";s:9:\"body_font\";s:14:\"Nunito||||||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:8:\"on|phone\";s:16:\"body_line_height\";s:5:\"1.8em\";s:9:\"meta_font\";s:10:\"Nunito||||\";s:15:\"meta_text_align\";s:4:\"left\";s:14:\"meta_font_size\";s:4:\"14px\";s:14:\"read_more_font\";s:10:\"||||on||||\";s:20:\"read_more_text_color\";s:7:\"#342929\";s:15:\"pagination_font\";s:16:\"Nunito||||on||||\";s:21:\"pagination_text_color\";s:7:\"#342929\";s:20:\"pagination_font_size\";s:4:\"16px\";s:27:\"pagination_font_size_tablet\";s:4:\"15px\";s:26:\"pagination_font_size_phone\";s:4:\"14px\";s:32:\"pagination_font_size_last_edited\";s:9:\"on|tablet\";s:13:\"custom_margin\";s:3:\"|||\";s:14:\"custom_padding\";s:3:\"|||\";s:15:\"animation_style\";s:4:\"fade\";s:15:\"animation_delay\";s:5:\"200ms\";s:16:\"border_width_all\";s:3:\"0px\";s:16:\"border_color_all\";s:7:\"#d8d8d8\";s:16:\"border_style_all\";s:5:\"solid\";s:26:\"border_width_all_fullwidth\";s:3:\"0px\";s:26:\"border_color_all_fullwidth\";s:7:\"#d8d8d8\";s:26:\"border_style_all_fullwidth\";s:5:\"solid\";s:18:\"global_colors_info\";s:114:\"{\"gcid-8791e582-6981-4487-b2f5-5067d56b420f\":[\"header_text_color\",\"read_more_text_color\",\"pagination_text_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Email Optin Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8445a219-6d49-4e07-b7b8-4039854e0e9e\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Primary Light\";s:7:\"created\";i:1708669238948;s:7:\"updated\";i:1708669238948;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"59cae1dd-273b-48e2-af7e-b4c60b1d395c\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"711aa0c8-1d69-4762-b4dc-d464bd2a149d\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"90482f97-d726-4b4f-999e-3f73bad5618f\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"465ed86c-6339-41dd-b1e2-1e619d576106\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}s:36:\"e8903491-33d2-40ae-ba80-4449f28eac4f\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Primary Light imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:73:\"{\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color_button\"]}\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.22.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6e937ddc-c33d-4c28-b79c-8238268d4f82\";O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Primary\";s:7:\"created\";i:1708669238948;s:7:\"updated\";i:1708669238948;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"60864134-0b1d-4679-9ef4-07685a5cb28b\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708803797034;s:7:\"updated\";i:1708803797034;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"213d91bc-6f6c-452a-b367-cc347b792a1a\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708807718604;s:7:\"updated\";i:1708807718604;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"4fb5480d-2b80-48cc-8a7a-719139556b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708810456120;s:7:\"updated\";i:1708810456120;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"9f4f4992-dfe0-4e02-9d23-d831dd7283f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811802848;s:7:\"updated\";i:1708811802848;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}s:36:\"2a7724d1-8cfa-4323-8806-bbda670e8649\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Primary imported\";s:7:\"created\";i:1708811976791;s:7:\"updated\";i:1708811976791;s:7:\"version\";s:6:\"4.22.1\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:16:\"header_font_size\";s:4:\"36px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#000000\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";}}}s:7:\"default\";s:8:\"_initial\";}}s:4:\"time\";i:1708825885000;s:5:\"label\";s:20:\"Imported From Layout\";}}s:5:\"index\";s:1:\"0\";}','no'),(360,'et_google_api_settings','a:3:{s:7:\"api_key\";s:0:\"\";s:16:\"use_google_fonts\";s:2:\"on\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";}','yes'),(393,'et_pb_signup_e79d0df10e6c8ff1cb6524709356a5b7','off','yes'),(396,'_et_core_portability_temp_files','a:2:{s:14:\"et_core_import\";a:1:{i:1972064933270499;s:84:\"/home/fef26c5/public_html/moanalagooncharters/wp-content/uploads/2024/02/layout.json\";}s:14:\"et_core_export\";a:1:{s:23:\"images_1972064933270499\";s:29:\"/tmp/65d904f885254-DntgQH.tmp\";}}','no'),(403,'et_pb_signup_ca63aee5aba4a31de1a3c9a90aa261d1','off','yes'),(431,'_transient_et_updated_plugins_data','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1708824677;}','yes'),(442,'grw_activation_time','1708798120','yes'),(443,'grw_is_multisite','','yes'),(445,'grw_active','1','yes'),(446,'grw_google_api_key','','yes'),(447,'grw_version','3.6','yes'),(448,'grw_auth_code','R9ASmasglKLMNHsm36eByOgRTtGKsP1S08lsrxIA9f9oqoOvoQwbuqbGOrkaqM8ROkQ1Mo1w4syNJxR4BN5vpLegLtE7A83Sswcr5r2l2PdZa6gYxeZJGRnoaEesknL','yes'),(449,'grw_revupd_cron','1','yes'),(454,'widget_grw_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(456,'grw_revupd_cron_timeout','','yes'),(457,'rplg_rev_notice_show','','yes'),(458,'grw_revupd_cron_log','Executed at 1708798121024 in 0ms for feeds: ','yes'),(476,'et_pb_contact_form_e67a3f445956b50f3dec9cc68e7daef8','off','yes'),(477,'et_pb_contact_form_c6f925dee0db5eb559eea9b024e06d71','off','yes'),(479,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(481,'et_pb_contact_form_f7d6a921e1f3cbda4c81a2e3e3c0248a','off','yes'),(496,'trustindex-tripadvisor-active','1','yes'),(497,'trustindex-tripadvisor-version','11.5','yes'),(498,'trustindex-tripadvisor-notifications','a:4:{s:23:\"not-using-no-connection\";a:3:{s:9:\"timestamp\";i:1708911077;s:6:\"active\";b:0;s:8:\"do-check\";b:0;}s:7:\"rate-us\";a:2:{s:6:\"active\";b:1;s:9:\"timestamp\";i:1710809535;}s:19:\"not-using-no-widget\";a:2:{s:6:\"active\";b:0;s:9:\"timestamp\";i:1708831945;}s:25:\"review-download-available\";a:2:{s:8:\"do-check\";b:0;s:6:\"active\";b:1;}}','no'),(504,'trustindex-core-shortcode-inited','11.5','no'),(506,'trustindex-tripadvisor-review-download-request-id','30c35d428097ga21','no'),(510,'trustindex-tripadvisor-page-details','a:6:{s:2:\"id\";s:122:\"co.nz|Attraction_Review-g309706-d12955863-Reviews-Mona_s_Lagoon_Charter_and_Water_Taxi-Aitutaki_Southern_Cook_Islands.html\";s:4:\"name\";s:38:\"\"Mona`s Lagoon Charter and Water Taxi\"\";s:7:\"address\";s:0:\"\";s:10:\"avatar_url\";s:0:\"\";s:13:\"rating_number\";i:55;s:12:\"rating_score\";d:5;}','no'),(511,'trustindex-tripadvisor-lang','en','no'),(512,'trustindex-tripadvisor-style-id','5','no'),(513,'trustindex-tripadvisor-scss-set','drop-shadow','no'),(514,'trustindex-tripadvisor-css-content','.ti-amp-iframe-body{background:#ffffff}.ti-widget.ti-trip{width:100%;display:block;overflow:hidden;text-align:left;direction:ltr;box-sizing:border-box}.ti-widget.ti-trip *,.ti-widget.ti-trip *:after{box-sizing:border-box}.ti-widget.ti-trip *:before,.ti-widget.ti-trip *:after{-webkit-box-ordinal-group:1 !important;content:unset}.ti-widget.ti-trip:before{display:none !important}.ti-widget.ti-trip a{text-decoration:underline !important;color:inherit}.ti-widget.ti-trip a.ti-header{text-decoration:none !important}.ti-widget.ti-trip a[href=\"#\"]:not(.ti-show-original-text),.ti-widget.ti-trip a:not([href]){text-decoration:none !important;pointer-events:none}.ti-widget.ti-trip .ti-widget-container,.ti-widget.ti-trip .ti-widget-container *{font-family:inherit;font-size:14px;line-height:1.4em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.ti-widget.ti-trip strong,.ti-widget.ti-trip strong *{font-weight:bold}.ti-widget.ti-trip .ti-widget-container{display:block;color:#000000;margin-bottom:15px}.ti-widget.ti-trip .ti-widget-container .ti-name{font-weight:bold;font-size:14px;overflow:hidden;padding-right:25px;white-space:nowrap;text-overflow:ellipsis;color:#000000;margin-bottom:2px}.ti-widget.ti-trip .ti-widget-container .ti-name a{text-decoration:none !important;font-size:inherit}.ti-widget.ti-trip .ti-widget-container .ti-name a:hover{text-decoration:underline !important}.ti-widget.ti-trip .ti-widget-container .ti-date{color:#000000;opacity:0.5;font-size:11.2px !important}.ti-widget.ti-trip .ti-profile-img{margin:0 15px 0 0 !important}.ti-widget.ti-trip .ti-profile-img img{width:40px !important;height:40px !important;padding:0px !important;display:block;border-radius:30px;min-width:initial !important;max-width:initial !important;object-fit:cover;object-position:top}.ti-widget.ti-trip .ti-profile-img .ti-profile-img-sprite{display:inline-block;float:left;background:white;background-repeat:no-repeat;width:40px;height:40px;border-radius:30px}.ti-widget.ti-trip .ti-profile-details{-webkit-box-flex:1;-ms-flex:1;flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-align:left;margin:0 !important;display:flex;flex-direction:column;justify-content:center}.ti-widget.ti-trip .ti-stars{margin-top:3px;white-space:nowrap;display:block}.ti-widget.ti-trip .ti-star{width:17px;height:17px;display:inline-block;margin:0 !important;margin-right:1px !important;background-size:contain;background-repeat:no-repeat}.ti-widget.ti-trip .ti-star:before,.ti-widget.ti-trip .ti-star:after{content:none !important}.ti-widget.ti-trip .ti-footer{margin-top:15px;padding-top:0px;text-align:center;line-height:1.45em}.ti-widget.ti-trip .ti-footer .ti-name{color:#000000;font-size:15px;margin-bottom:5px;overflow:hidden;text-overflow:ellipsis}.ti-widget.ti-trip .ti-footer .ti-stars{margin-bottom:3px;margin-top:0px;line-height:0}.ti-widget.ti-trip .ti-footer .ti-profile-details{padding-top:4px}.ti-widget.ti-trip .ti-footer .ti-inner{padding-bottom:10px}.ti-widget.ti-trip .ti-footer-filter-text{font-size:15px !important;color:#000000;margin-bottom:0 !important;padding:0 15px;text-align:left;margin:12px 28px}.ti-widget.ti-trip .ti-footer-filter-text:empty{margin:0 !important}@media (max-width:479px){.ti-widget.ti-trip .ti-footer-filter-text{text-align:center !important}}.ti-widget.ti-trip .star-lg .ti-star{width:30px !important;height:30px !important}.ti-widget.ti-trip .ti-d-none{display:none !important}.ti-widget.ti-trip.ti-icon-size1 .ti-review-header:after{width:25px;height:25px}.ti-widget.ti-trip.ti-icon-size1 .ti-widget-container .ti-name{padding-left:30px}.ti-widget.ti-trip.ti-icon-size2 .ti-review-header:after{width:30px;height:30px}.ti-widget.ti-trip.ti-icon-size2 .ti-widget-container .ti-name{padding-left:35px}.ti-widget.ti-trip .ti-rating-text,.ti-widget.ti-trip .ti-rating-text strong,.ti-widget.ti-trip .ti-rating-text strong a,.ti-widget.ti-trip .ti-rating-text strong span,.ti-widget.ti-trip .ti-rating-text span strong,.ti-widget.ti-trip .ti-rating-text span,.ti-widget.ti-trip .ti-footer,.ti-widget.ti-trip .ti-footer strong,.ti-widget.ti-trip .ti-footer span,.ti-widget.ti-trip .ti-footer strong a{font-size:14px;color:#000000}.ti-widget.ti-trip .ti-large-logo{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:0 !important}.ti-widget.ti-trip .ti-large-logo .ti-v-center{-ms-flex-item-align:center !important;align-self:center !important;text-align:center;-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.ti-widget.ti-trip .ti-large-logo img{margin:auto;padding:0 !important;display:block !important;position:relative}.ti-widget.ti-trip .nowrap{white-space:nowrap;display:inline-block;margin:0 2px}.ti-widget.ti-trip .nowrap:first-of-type{margin-left:0}.ti-widget.ti-trip .nowrap:last-of-type{margin-right:0}.ti-widget.ti-trip .ti-reviews-container-wrapper .ti-inner>.ti-stars,.ti-widget.ti-trip .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars{margin-bottom:8px;margin-top:15px;text-align:left}.ti-widget.ti-trip .ti-reviews-container-wrapper{overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;margin:0 20px;padding-top:5px}.ti-widget.ti-trip .ti-col-1 .ti-review-item{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ti-widget.ti-trip .ti-widget-container{display:-ms-flexbox;display:flex;flex-wrap:nowrap;align-items:center;-ms-flex-wrap:nowrap;-ms-flex-align:center}.ti-widget.ti-trip .ti-col-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.ti-widget.ti-trip .ti-col-1 .ti-reviews-container,.ti-widget.ti-trip .ti-col-1 .ti-footer{margin-top:0px;padding-right:0px;margin-bottom:30px;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ti-widget.ti-trip .ti-col-2 .ti-footer,.ti-widget.ti-trip .ti-col-2 .ti-reviews-container{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ti-widget.ti-trip .ti-col-2 .ti-review-item{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ti-widget.ti-trip .ti-col-3 .ti-footer{-ms-flex:0 0 33.333%;flex:0 0 33.333%;max-width:33.333%}.ti-widget.ti-trip .ti-col-3 .ti-reviews-container{-ms-flex:0 0 66.666%;flex:0 0 66.666%;max-width:66.666%}.ti-widget.ti-trip .ti-col-3 .ti-review-item{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ti-widget.ti-trip .ti-col-4 .ti-footer{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ti-widget.ti-trip .ti-col-4 .ti-reviews-container{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ti-widget.ti-trip .ti-col-4 .ti-review-item{-ms-flex:0 0 33.333%;flex:0 0 33.333%;max-width:33.333%}.ti-widget.ti-trip .ti-col-5 .ti-footer{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.ti-widget.ti-trip .ti-col-5 .ti-reviews-container{-ms-flex:0 0 80%;flex:0 0 80%;max-width:80%}.ti-widget.ti-trip .ti-col-5 .ti-review-item{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ti-widget.ti-trip .ti-col-6 .ti-footer{-ms-flex:0 0 16.666%;flex:0 0 16.666%;max-width:16.666%}.ti-widget.ti-trip .ti-col-6 .ti-reviews-container{-ms-flex:0 0 83.333%;flex:0 0 83.333%;max-width:83.333%}.ti-widget.ti-trip .ti-col-6 .ti-review-item{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.ti-widget.ti-trip .ti-col-7 .ti-footer{-ms-flex:0 0 14.286%;flex:0 0 14.286%;max-width:14.286%}.ti-widget.ti-trip .ti-col-7 .ti-reviews-container{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.ti-widget.ti-trip .ti-col-7 .ti-review-item{-ms-flex:0 0 16.666%;flex:0 0 16.666%;max-width:16.666%}.ti-widget.ti-trip .ti-col-8 .ti-footer{-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.ti-widget.ti-trip .ti-col-8 .ti-reviews-container{-ms-flex:0 0 85.714%;flex:0 0 85.714%;max-width:85.714%}.ti-widget.ti-trip .ti-col-8 .ti-review-item{-ms-flex:0 0 14.286%;flex:0 0 14.286%;max-width:14.286%}.ti-widget.ti-trip .ti-col-9 .ti-footer{-ms-flex:0 0 11.111%;flex:0 0 11.111%;max-width:11.111%}.ti-widget.ti-trip .ti-col-9 .ti-reviews-container{-ms-flex:0 0 88.889%;flex:0 0 88.889%;max-width:88.889%}.ti-widget.ti-trip .ti-col-9 .ti-review-item{-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.ti-widget.ti-trip .ti-col-10 .ti-footer{-ms-flex:0 0 10%;flex:0 0 10%;max-width:10%}.ti-widget.ti-trip .ti-col-10 .ti-reviews-container{-ms-flex:0 0 90%;flex:0 0 90%;max-width:90%}.ti-widget.ti-trip .ti-col-10 .ti-review-item{-ms-flex:0 0 11.111%;flex:0 0 11.111%;max-width:11.111%}.ti-widget.ti-trip .ti-reviews-container{position:relative;display:block}.ti-widget.ti-trip .ti-read-more{display:block;padding:5px 0 0;text-align:left}.ti-widget.ti-trip .ti-read-more span{display:inline-block;font-weight:400;white-space:nowrap;font-size:13.5px;color:#000000;opacity:0.5;text-decoration:none !important;transition:color 300ms ease-out;cursor:pointer}.ti-widget.ti-trip .ti-read-more span:hover{opacity:1;text-decoration:underline !important}.ti-widget.ti-trip .ti-review-item{padding:0 8px;transition:transform 300ms ease-out}.ti-widget.ti-trip .ti-review-item .ti-inner{border-radius:4px}.ti-widget.ti-trip .ti-review-item>.ti-inner{border-style:solid !important;border-color:#ffffff !important;background:#ffffff !important;border-radius:4px !important;padding:20px !important;margin:0 !important;display:block;position:relative}.ti-widget.ti-trip .ti-review-item .ti-polarity .ti-polarity-icon{position:relative;margin:0;text-indent:3px;display:inline-block;width:15px;height:15px}.ti-widget.ti-trip .ti-review-item .ti-recommendation .ti-recommendation-icon{position:relative;margin:0 5px;margin-bottom:-3px;text-indent:3px;display:inline-block;width:15px;height:15px}.ti-widget.ti-trip .ti-review-item .ti-recommendation .ti-recommendation-icon:first-child{margin-left:0}.ti-widget.ti-trip .ti-review-item .ti-recommendation .ti-recommendation-title{font-weight:700;font-size:13px !important;opacity:0.8;position:relative;top:-1px}.ti-widget.ti-trip .ti-review-item .ti-recommendation+.ti-dummy-stars{display:none}.ti-widget.ti-trip .ti-review-item .ti-stars{height:17px}.ti-widget.ti-trip .ti-review-content{display:-webkit-box;-webkit-box-orient:vertical;line-height:21.75px;height:87px;font-size:15px;text-align:left;transition:height 0.5s;font-style:normal;-webkit-line-clamp:4;overflow:hidden;padding-right:0}.ti-widget.ti-trip .ti-review-content .ti-show-original-text{font-size:inherit !important}.ti-widget.ti-trip .ti-review-content .ti-stars{margin-bottom:5px}.ti-widget.ti-trip .ti-review-content strong{font-size:inherit;color:inherit;font-weight:normal !important}.ti-widget.ti-trip .ti-review-header{display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;position:relative}.ti-widget.ti-trip .ti-review-header:after{content:\"\";display:block;width:20px;height:20px;position:absolute;right:0px;background-repeat:no-repeat;background-position:center center}.ti-widget.ti-trip .ti-highlight{padding:1px 2px;margin:0;box-decoration-break:clone;-webkit-box-decoration-break:clone;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;background-color:transparent !important;background-image:linear-gradient(#fbe049, #fbe049);background-size:100% 19px;background-position:bottom;background-repeat:no-repeat;color:#000 !important;font-size:inherit !important}@media (min-width:480px){.ti-widget.ti-trip .ti-review-item:hover{-webkit-transform:translate(0, -5px);-ms-transform:translate(0, -5px);transform:translate(0, -5px)}}.ti-widget.ti-trip .ti-ai-summary-item{color:#000000}.ti-widget.ti-trip .ti-ai-summary-item .ti-review-content{-webkit-line-clamp:5;margin-top:16.25px;height:108.75px !important}.ti-widget.ti-trip .ti-ai-summary-item .ti-review-content .ti-summary-list{margin-bottom:0;padding-left:0;list-style:none;font-size:inherit}.ti-widget.ti-trip .ti-ai-summary-item .ti-review-content .ti-summary-list li{list-style:inherit;margin-bottom:0;padding-left:20px;position:relative;font-size:inherit}.ti-widget.ti-trip .ti-ai-summary-item .ti-review-content .ti-summary-list li:last-child{margin-bottom:0}.ti-widget.ti-trip .ti-ai-summary-item .ti-review-content .ti-summary-list li:before{display:block;content:\"\";width:10px;height:5px;border-left:solid 2px #000000;border-bottom:solid 2px #000000;transform:rotate(-45deg);position:absolute;left:0;top:7.5px}.ti-widget.ti-trip .ti-ai-summary-item .ti-profile-img{margin-right:13px !important}.ti-widget.ti-trip .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img){display:inline-block;vertical-align:middle;border:2px solid #ffffff}.ti-widget.ti-trip .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img):not(:first-child){margin-left:-12px}.ti-widget.ti-trip .ti-ai-summary-item>.ti-inner{background:linear-gradient(115deg, #E0F6FE 0%, #EED8F1 100%) !important}.ti-widget.ti-trip .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img){border-color:white}.ti-widget.ti-trip .ti-ai-summary-item .ti-name,.ti-widget.ti-trip .ti-ai-summary-item .ti-date,.ti-widget.ti-trip .ti-ai-summary-item .ti-read-more span{color:#000000}.ti-widget.ti-trip.ti-custom-stars [class*=\"source-\"] .ti-star.e,.ti-widget.ti-trip.ti-custom-stars [class*=\"source-\"] .ti-star.f{background-image:none}.ti-widget.ti-trip.ti-custom-stars .ti-star{-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-image:url(https://cdn.trustindex.io/assets/platform/Trustindex/star/s.svg);-webkit-mask-image:url(https://cdn.trustindex.io/assets/platform/Trustindex/star/s.svg)}.ti-widget.ti-trip.ti-custom-stars .ti-star:not(.e):not(.h){background:#f6bb06}.ti-widget.ti-trip.ti-custom-stars .ti-star.h{background:#f6bb06;background:-webkit-linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important;background:linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important}.ti-widget.ti-trip.ti-custom-stars .ti-star.e{background:#ccc !important}.ti-widget.ti-trip[data-language=\"ar\"] .ti-name,.ti-widget.ti-trip[data-language=\"ar\"] .ti-date,.ti-widget.ti-trip[data-language=\"ar\"] .ti-profile-details .ti-text,.ti-widget.ti-trip[data-language=\"ar\"] .ti-review-content,.ti-widget.ti-trip[data-language=\"ar\"] .ti-review-text,.ti-widget.ti-trip[data-language=\"ar\"] .ti-read-more,.ti-widget.ti-trip[data-language=\"ar\"] .ti-footer,.ti-widget.ti-trip[data-language=\"ar\"] .ti-rating-text,.ti-widget.ti-trip[data-language=\"ar\"] .ti-footer-filter-text,.ti-widget.ti-trip[data-language=\"ar\"] .ti-header-write-btn,.ti-widget.ti-trip[data-language=\"ar\"] .ti-widget-header .ti-tab-item[data-source=\"all\"] .ti-item-label,.ti-widget.ti-trip[data-language=\"ar\"] .ti-header-rating-text,.ti-widget.ti-trip[data-language=\"ar\"] .ti-rating-name,.ti-widget.ti-trip[data-language=\"ar\"] .ti-header .ti-text,.ti-widget.ti-trip[data-language=\"ar\"] .ti-load-more-reviews-button,.ti-widget.ti-trip[data-language=\"he\"] .ti-name,.ti-widget.ti-trip[data-language=\"he\"] .ti-date,.ti-widget.ti-trip[data-language=\"he\"] .ti-profile-details .ti-text,.ti-widget.ti-trip[data-language=\"he\"] .ti-review-content,.ti-widget.ti-trip[data-language=\"he\"] .ti-review-text,.ti-widget.ti-trip[data-language=\"he\"] .ti-read-more,.ti-widget.ti-trip[data-language=\"he\"] .ti-footer,.ti-widget.ti-trip[data-language=\"he\"] .ti-rating-text,.ti-widget.ti-trip[data-language=\"he\"] .ti-footer-filter-text,.ti-widget.ti-trip[data-language=\"he\"] .ti-header-write-btn,.ti-widget.ti-trip[data-language=\"he\"] .ti-widget-header .ti-tab-item[data-source=\"all\"] .ti-item-label,.ti-widget.ti-trip[data-language=\"he\"] .ti-header-rating-text,.ti-widget.ti-trip[data-language=\"he\"] .ti-rating-name,.ti-widget.ti-trip[data-language=\"he\"] .ti-header .ti-text,.ti-widget.ti-trip[data-language=\"he\"] .ti-load-more-reviews-button,.ti-widget.ti-trip[data-language=\"fa\"] .ti-name,.ti-widget.ti-trip[data-language=\"fa\"] .ti-date,.ti-widget.ti-trip[data-language=\"fa\"] .ti-profile-details .ti-text,.ti-widget.ti-trip[data-language=\"fa\"] .ti-review-content,.ti-widget.ti-trip[data-language=\"fa\"] .ti-review-text,.ti-widget.ti-trip[data-language=\"fa\"] .ti-read-more,.ti-widget.ti-trip[data-language=\"fa\"] .ti-footer,.ti-widget.ti-trip[data-language=\"fa\"] .ti-rating-text,.ti-widget.ti-trip[data-language=\"fa\"] .ti-footer-filter-text,.ti-widget.ti-trip[data-language=\"fa\"] .ti-header-write-btn,.ti-widget.ti-trip[data-language=\"fa\"] .ti-widget-header .ti-tab-item[data-source=\"all\"] .ti-item-label,.ti-widget.ti-trip[data-language=\"fa\"] .ti-header-rating-text,.ti-widget.ti-trip[data-language=\"fa\"] .ti-rating-name,.ti-widget.ti-trip[data-language=\"fa\"] .ti-header .ti-text,.ti-widget.ti-trip[data-language=\"fa\"] .ti-load-more-reviews-button{direction:rtl}.ti-widget.ti-trip[data-language=\"ar\"] .ti-stars,.ti-widget.ti-trip[data-language=\"ar\"] .ti-footer .ti-row,.ti-widget.ti-trip[data-language=\"he\"] .ti-stars,.ti-widget.ti-trip[data-language=\"he\"] .ti-footer .ti-row,.ti-widget.ti-trip[data-language=\"fa\"] .ti-stars,.ti-widget.ti-trip[data-language=\"fa\"] .ti-footer .ti-row{direction:ltr}.ti-widget.ti-trip ::-webkit-scrollbar{width:4px;border-radius:3px}.ti-widget.ti-trip ::-webkit-scrollbar-track{background:rgba(85, 85, 85, 0.1)}.ti-widget.ti-trip ::-webkit-scrollbar-thumb{background:rgba(85, 85, 85, 0.6)}.ti-widget.ti-trip ::-webkit-scrollbar-thumb:hover{background:#555}.ti-verified-review{display:inline-block;background:url(\"https://cdn.trustindex.io/assets/icon/trustindex-verified-icon.svg\");background-size:contain;width:15px;height:15px;margin:0 !important;margin-left:7px !important;position:relative;z-index:2}.ti-verified-review:only-child{margin-left:0 !important}.ti-verified-review .ti-verified-tooltip{color:#fff !important;background-color:#6f6f6f !important;padding:0 10px;border-radius:4px;font-size:11px !important;line-height:22px !important;font-weight:500;display:inline-block;position:absolute;left:0;margin-left:25px;top:-4px;white-space:nowrap;opacity:0;transition:all 0.3s ease-in-out}.ti-verified-review .ti-verified-tooltip:before{width:0;height:0;border-style:solid;border-width:5px 5px 5px 0;border-color:transparent #6f6f6f transparent transparent;content:\"\";position:absolute;left:-5px;top:50%;margin-top:-5px}.ti-verified-review:hover .ti-verified-tooltip{opacity:1;margin-left:20px}.ti-recommendation+.ti-verified-review{top:2px}.ti-widget .source-Tripadvisor .ti-review-header:after{background-image:url(\"https://cdn.trustindex.io/assets/platform/Tripadvisor/icon.svg\");background-size:100% 100%}.ti-widget .source-Tripadvisor .ti-star.f{background-image:url(\"https://cdn.trustindex.io/assets/platform/Tripadvisor/star/f.svg\")}.ti-widget .source-Tripadvisor .ti-star.e{background-image:url(\"https://cdn.trustindex.io/assets/platform/Tripadvisor/star/e.svg\")}.ti-widget .source-Tripadvisor .ti-star.h{background-image:url(\"https://cdn.trustindex.io/assets/platform/Tripadvisor/star/h.svg\")}.ti-widget .source-Tripadvisor .ti-large-logo img{width:155px !important;height:33px !important}.ti-widget .star-lg .ti-star{width:30px;height:30px}.ti-widget .ti-header .ti-star{width:20px;height:20px}.ti-widget .source-Trustpilot .ti-review-header:after,.ti-widget .source-Trustpilot .ti-inner:after,.ti-widget .source-Trustpilot .ti-review-content:after,.ti-widget .source-Trustpilot .ti-platform-icon:after,.ti-widget .source-Trustpilot .ti-icon{display:none !important}.ti-widget .source-Trustpilot.ti-tab-item:before,.ti-widget .source-Trustpilot.ti-write-btn-dropdown-item:before{display:none !important}.ti-widget[data-layout-id=\"5\"] .source-Trustpilot .ti-large-logo,.ti-widget[data-layout-id=\"9\"] .source-Trustpilot .ti-large-logo,.ti-widget[data-layout-id=\"12\"] .source-Trustpilot .ti-large-logo,.ti-widget[data-layout-id=\"20\"] .source-Trustpilot .ti-large-logo{display:none !important}.ti-widget.ti-trip.ti-no-logo .ti-review-header:after{background:none !important}.ti-widget.ti-trip.ti-no-stars .ti-star.f{background-image:url(\"https://cdn.trustindex.io/assets/platform/Trustindex/star/f.svg\") !important}.ti-widget.ti-trip.ti-no-stars .ti-star.e{background-image:url(\"https://cdn.trustindex.io/assets/platform/Trustindex/star/e.svg\") !important}.ti-widget.ti-trip.ti-no-stars .ti-star.h{background-image:url(\"https://cdn.trustindex.io/assets/platform/Trustindex/star/h.svg\") !important}.ti-widget.ti-trip.ti-no-stars .ti-recommendation{display:none}.ti-widget.ti-trip.ti-no-stars .ti-recommendation+.ti-dummy-stars{display:inline}.ti-widget.ti-trip{overflow:visible !important}.ti-widget.ti-trip .ti-review-item>.ti-inner,.ti-widget.ti-trip .ti-load-more-reviews-container .ti-load-more-reviews-button{box-shadow:1px 1px 7px 0px rgba(0, 0, 0, 0.13), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);border-top-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;border-right-width:0px !important;background-color:white !important;backdrop-filter:blur(0px)}.ti-widget.ti-trip .ti-reviews-container-wrapper{padding-top:12px !important;padding-bottom:12px !important}.ti-widget.ti-trip .ti-widget-header{margin-bottom:4px !important}.ti-widget.ti-trip .ti-review-content{height:87px !important}.ti-widget.ti-trip .ti-reviews-container-wrapper{padding-bottom:1px}.ti-widget.ti-trip .ti-widget-container:not(.ti-col-1) .ti-footer{flex:0 0 245px !important;max-width:245px !important;margin-left:20px;margin-right:20px}.ti-widget.ti-trip .ti-widget-container:not(.ti-col-1) .ti-reviews-container{flex:0 0 calc(100% - 285px) !important;max-width:calc(100% - 285px) !important}.ti-widget.ti-trip .ti-rating-text strong.ti-rating{font-size:24px !important;display:block;margin-bottom:6px}.ti-widget.ti-trip .ti-large-logo{margin-top:8px}.ti-widget.ti-trip .ti-large-logo img{max-width:120px;top:0px}.ti-widget.ti-trip .ti-rating-text .nowrap{margin-bottom:3px}.ti-widget.ti-trip .ti-footer-filter-text{text-align:right}.ti-widget.ti-trip .ti-controls{display:block;margin-top:-15px;width:100%;position:absolute;height:0px;z-index:1;top:50%}.ti-widget.ti-trip .ti-controls .ti-next,.ti-widget.ti-trip .ti-controls .ti-prev{position:absolute;display:inline-block;width:20px;height:30px;padding-top:20px;padding-bottom:20px;display:block;opacity:1;-webkit-transition:all 200ms ease-out;-moz-transition:all 200ms ease-out;-o-transition:all 200ms ease-out;transition:all 200ms ease-out}.ti-widget.ti-trip .ti-controls .ti-next:hover,.ti-widget.ti-trip .ti-controls .ti-prev:hover{cursor:pointer;-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)}.ti-widget.ti-trip .ti-controls .ti-next:before,.ti-widget.ti-trip .ti-controls .ti-prev:before{content:\"\";background:#cccccc;width:17px;height:3px;display:block;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:2px;position:absolute}.ti-widget.ti-trip .ti-controls .ti-next:after,.ti-widget.ti-trip .ti-controls .ti-prev:after{content:\"\";background:#cccccc;width:17px;height:3px;display:block;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:2px;position:absolute}.ti-widget.ti-trip .ti-controls .ti-next{right:2px}.ti-widget.ti-trip .ti-controls .ti-next:after{top:18px;right:0px}.ti-widget.ti-trip .ti-controls .ti-next:before{top:8px;right:0px}.ti-widget.ti-trip .ti-controls .ti-prev{left:2px}.ti-widget.ti-trip .ti-controls .ti-prev:after{top:8px;left:0px}.ti-widget.ti-trip .ti-controls .ti-prev:before{top:18px;left:0px}@media (max-width:479px){.ti-widget.ti-trip .ti-controls{top:calc(50% - 19px)}}.ti-widget.ti-trip .ti-controls-line{display:none;margin:20px auto;width:150px;height:3px;border-radius:3px;background:rgba(204, 204, 204, 0.35);position:relative;overflow:hidden}.ti-widget.ti-trip .ti-controls-line .dot{position:absolute;left:0;top:0;display:inline-block;width:25px;padding-left:4px;padding-right:4px;height:100%;border-radius:3px;background:#cccccc;transition:width 0.2s, left 0.2s}@media (max-width:479px){.ti-widget.ti-trip .ti-controls-line{display:block !important}}.ti-widget.ti-trip .ti-controls-dots{display:none;margin-top:10px;margin-bottom:10px;text-align:center}.ti-widget.ti-trip .ti-controls-dots .dot{display:inline-block;width:10px;height:10px;background:#cccccc;border-radius:20px;padding:4px;opacity:0.4}.ti-widget.ti-trip .ti-controls-dots .dot.active{opacity:1}@media (max-width:479px){.ti-widget.ti-trip .ti-controls-dots{display:block !important}}.ti-widget.ti-trip .ti-footer{margin-top:0}.ti-widget.ti-trip .ti-footer .ti-stars{margin-bottom:5px}.ti-widget.ti-trip .ti-large-logo{margin-top:5px}.ti-clickable-link{cursor:pointer}','no'),(516,'trustindex-tripadvisor-content-saved-to','11.5','no'),(517,'trustindex-tripadvisor-filter','a:2:{s:5:\"stars\";a:5:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;}s:12:\"only-ratings\";b:1;}','no'),(518,'trustindex-tripadvisor-verified-icon','0','no'),(519,'trustindex-tripadvisor-enable-animation','1','no'),(520,'trustindex-tripadvisor-show-arrows','1','no'),(521,'trustindex-tripadvisor-show-header-button','1','no'),(522,'trustindex-tripadvisor-reviews-load-more','1','no'),(523,'trustindex-tripadvisor-show-reviewers-photo','1','no'),(524,'trustindex-tripadvisor-no-rating-text','0','no'),(525,'trustindex-tripadvisor-disable-font','1','no'),(526,'trustindex-tripadvisor-show-logos','1','no'),(527,'trustindex-tripadvisor-show-stars','1','no'),(528,'trustindex-tripadvisor-footer-filter-text','0','no'),(529,'trustindex-tripadvisor-review-content','<div class=\"ti-widget\" data-layout-id=\"5\" data-set-id=\"\" data-pid=\"\" data-pager-autoplay-timeout=\"6\" data-review-target-width=\"275\" data-language=\"en\" > <div class=\"ti-widget-container ti-col-4\"> <div class=\"ti-footer source-%platform%\"> <div class=\"ti-rating-text\"> <strong class=\"ti-rating\"> Rating_Text </strong> </div> <span class=\"ti-stars star-lg\"> <span class=\"ti-star e\"></span><span class=\"ti-star e\"></span><span class=\"ti-star e\"></span><span class=\"ti-star e\"></span><span class=\"ti-star e\"></span> </span> <div class=\"ti-rating-text\"> <span class=\"nowrap\">Based on <strong>RATING_NUMBER reviews</strong></span> </div> <div class=\"ti-large-logo\"> <div class=\"ti-v-center\"> <img class=\"ti-logo-fb\" src=\"https://cdn.trustindex.io/assets/platform/%platform%/logo.svg\" alt=\"%platform%\" width=\"150\" height=\"25\" /> </div> </div> </div> <div class=\"ti-reviews-container\"> <div class=\"ti-controls\"> <div class=\"ti-next\"></div> <div class=\"ti-prev\"></div> </div> <div class=\"ti-reviews-container-wrapper\"> <!-- R-LIST --> <div class=\"ti-review-item source-%platform%\" > <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-profile-img\"> <img src=\"%reviewer_photo%\" alt=\"%reviewer_name%\" /> </div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> %reviewer_name% </div> <div class=\"ti-date\">%created_at%</div> </div> </div> <span class=\"ti-stars\"><span class=\"ti-star f\"></span><span class=\"ti-star f\"></span><span class=\"ti-star f\"></span><span class=\"ti-star f\"></span><span class=\"ti-star f\"></span></span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->%text%<!-- R-CONTENT --></div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\" ></span> </div> </div> <!-- R-LIST --> </div> <div class=\"ti-controls-line\"> <div class=\"dot\"></div> </div> <div class=\"ti-footer-filter-text\"><!-- FOOTER FILTER TEXT --></div> </div> </div> </div>','no'),(530,'trustindex-tripadvisor-widget-setted-up','1','no'),(540,'_transient_timeout_et_core_version','1710892897','no'),(541,'_transient_et_core_version','4.22.0','no'),(547,'trustindex-tripadvisor-rate-us-feedback','5','no'),(548,'trustindex-tripadvisor-review-download-modal','0','no'),(549,'trustindex-tripadvisor-download-timestamp','1709690166','no'),(550,'et_pb_signup_4cacd7faf1a91bce9f2d495908301483','off','yes'),(907,'_site_transient_timeout_browser_dd78878bebc0e6afff80be96516511d7','1710886867','no'),(908,'_site_transient_browser_dd78878bebc0e6afff80be96516511d7','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"122.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";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'),(909,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1710886867','no'),(910,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(999,'_transient_timeout_et_core_path','1710892897','no'),(1000,'_transient_et_core_path','/home/fef26c5/public_html/moanalagooncharters/wp-content/themes/Divi/core','no'),(1002,'_transient_timeout_et_check_mod_pagespeed','1710892898','no'),(1003,'_transient_et_check_mod_pagespeed','','no'),(1004,'_transient_timeout__et_builder_gf_feature_cache','1710892898','no'),(1005,'_transient__et_builder_gf_feature_cache','1','no'),(1017,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1710826811;s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"4.22.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:4:{s:11:\"new_version\";s:6:\"4.24.2\";s:5:\"theme\";s:4:\"Divi\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:141:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=237b872b80cf2978f15d468f8f3c8b91d0227e69&username=Vonnias\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(1018,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"4.22.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:4:{s:11:\"new_version\";s:6:\"4.24.2\";s:5:\"theme\";s:4:\"Divi\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:141:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=237b872b80cf2978f15d468f8f3c8b91d0227e69&username=Vonnias\";}}s:12:\"last_checked\";i:1710826811;}','no'),(1019,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1710826811;s:8:\"response\";a:2:{s:29:\"widget-google-reviews/grw.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/widget-google-reviews\";s:4:\"slug\";s:21:\"widget-google-reviews\";s:6:\"plugin\";s:29:\"widget-google-reviews/grw.php\";s:11:\"new_version\";s:5:\"3.6.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/widget-google-reviews/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/widget-google-reviews.3.6.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/widget-google-reviews/assets/icon-128x128.png?rev=2871993\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/widget-google-reviews/assets/banner-772x250.png?rev=2994832\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:65:\"review-widgets-for-tripadvisor/review-widgets-for-tripadvisor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:44:\"w.org/plugins/review-widgets-for-tripadvisor\";s:4:\"slug\";s:30:\"review-widgets-for-tripadvisor\";s:6:\"plugin\";s:65:\"review-widgets-for-tripadvisor/review-widgets-for-tripadvisor.php\";s:11:\"new_version\";s:4:\"11.7\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/review-widgets-for-tripadvisor/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/review-widgets-for-tripadvisor.11.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/review-widgets-for-tripadvisor/assets/icon-256x256.png?rev=2816270\";s:2:\"1x\";s:83:\"https://ps.w.org/review-widgets-for-tripadvisor/assets/icon-128x128.png?rev=2816270\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/review-widgets-for-tripadvisor/assets/banner-1544x500.jpg?rev=2473555\";s:2:\"1x\";s:85:\"https://ps.w.org/review-widgets-for-tripadvisor/assets/banner-772x250.jpg?rev=2473555\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.2\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}s:7:\"checked\";a:4:{s:19:\"akismet/akismet.php\";s:5:\"5.3.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:29:\"widget-google-reviews/grw.php\";s:3:\"3.6\";s:65:\"review-widgets-for-tripadvisor/review-widgets-for-tripadvisor.php\";s:4:\"11.5\";}}','no'),(1020,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:4:{s:19:\"akismet/akismet.php\";s:5:\"5.3.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:29:\"widget-google-reviews/grw.php\";s:3:\"3.6\";s:65:\"review-widgets-for-tripadvisor/review-widgets-for-tripadvisor.php\";s:4:\"11.5\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1710826811;}','no'),(1022,'_site_transient_timeout_theme_roots','1710835416','no'),(1023,'_site_transient_theme_roots','a:4:{s:4:\"Divi\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `wp7riu_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_postmeta`
--

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

--
-- Dumping data for table `wp7riu_postmeta`
--

LOCK TABLES `wp7riu_postmeta` WRITE;
/*!40000 ALTER TABLE `wp7riu_postmeta` DISABLE KEYS */;
INSERT INTO `wp7riu_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(6,9,'_edit_lock','1708024656:1'),(7,9,'_et_pb_use_builder','on'),(8,9,'_et_gb_content_width',''),(9,9,'footnotes',''),(10,11,'footnotes',''),(11,9,'_edit_last','1'),(12,9,'_et_pb_post_hide_nav','default'),(13,9,'_et_pb_page_layout','et_right_sidebar'),(14,9,'_et_pb_side_nav','off'),(15,12,'_wp_attached_file','2024/02/bftb_header_02.png.png'),(16,12,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:30:\"2024/02/bftb_header_02.png.png\";s:8:\"filesize\";i:2291;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:{}}}'),(17,13,'_wp_attached_file','2024/02/device-repair-20.jpg'),(18,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"2024/02/device-repair-20.jpg\";s:8:\"filesize\";i:58753;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"device-repair-20-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11113;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"device-repair-20-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49432;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"device-repair-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7210;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"device-repair-20-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33464;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"device-repair-20-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85520;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"device-repair-20-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15826;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:29:\"device-repair-20-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56850;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"device-repair-20-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16800;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"device-repair-20-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23225;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:29:\"device-repair-20-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53050;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"device-repair-20-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21450;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:29:\"device-repair-20-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65908;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:28:\"device-repair-20-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46920;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"device-repair-20-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18653;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19,14,'_wp_attached_file','2024/02/device-repair-icon-5b.png'),(20,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:33:\"2024/02/device-repair-icon-5b.png\";s:8:\"filesize\";i:290;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:{}}}'),(21,15,'_wp_attached_file','2024/02/device-repair-icon-6b.png'),(22,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:33:\"2024/02/device-repair-icon-6b.png\";s:8:\"filesize\";i:239;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:{}}}'),(23,16,'_wp_attached_file','2024/02/device-repair-icon-7b.png'),(24,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:33:\"2024/02/device-repair-icon-7b.png\";s:8:\"filesize\";i:259;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:{}}}'),(25,17,'_wp_attached_file','2024/02/cracked-screen-bg-lowres.jpg'),(26,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1178;s:4:\"file\";s:36:\"2024/02/cracked-screen-bg-lowres.jpg\";s:8:\"filesize\";i:331994;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8852;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"cracked-screen-bg-lowres-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61356;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"cracked-screen-bg-lowres-1536x942.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:942;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:346178;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13529;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:37:\"cracked-screen-bg-lowres-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158295;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17640;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32336;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:37:\"cracked-screen-bg-lowres-1080x663.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153412;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45076;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:37:\"cracked-screen-bg-lowres-1280x785.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231205;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-980x601.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120412;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:36:\"cracked-screen-bg-lowres-480x295.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21750;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27,18,'_wp_attached_file','2024/02/cracked-phone-white.png'),(28,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1620;s:4:\"file\";s:31:\"2024/02/cracked-phone-white.png\";s:8:\"filesize\";i:126777;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"cracked-phone-white-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20742;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"cracked-phone-white-506x1024.png\";s:5:\"width\";i:506;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"cracked-phone-white-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9554;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"cracked-phone-white-768x1555.png\";s:5:\"width\";i:768;s:6:\"height\";i:1555;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:311437;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"cracked-phone-white-759x1536.png\";s:5:\"width\";i:759;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:305073;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"cracked-phone-white-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24316;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"cracked-phone-white-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139705;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"cracked-phone-white-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29065;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"cracked-phone-white-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49108;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"cracked-phone-white-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61353;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"cracked-phone-white-480x972.png\";s:5:\"width\";i:480;s:6:\"height\";i:972;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139575;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29,19,'_wp_attached_file','2024/02/device-repair-1b.png'),(30,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:798;s:6:\"height\";i:698;s:4:\"file\";s:28:\"2024/02/device-repair-1b.png\";s:8:\"filesize\";i:2325;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3662;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1592;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-768x672.png\";s:5:\"width\";i:768;s:6:\"height\";i:672;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10323;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3355;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-798x675.png\";s:5:\"width\";i:798;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5478;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3773;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5876;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4433;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"device-repair-1b-480x420.png\";s:5:\"width\";i:480;s:6:\"height\";i:420;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(31,20,'_wp_attached_file','2024/02/device-repair-9.jpg'),(32,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:980;s:4:\"file\";s:27:\"2024/02/device-repair-9.jpg\";s:8:\"filesize\";i:54599;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"device-repair-9-245x300.jpg\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14779;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"device-repair-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7722;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"device-repair-9-768x941.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:941;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73305;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"device-repair-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17524;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:27:\"device-repair-9-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50270;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"device-repair-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19308;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"device-repair-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28436;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"device-repair-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29399;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"device-repair-9-480x588.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(33,21,'_wp_attached_file','2024/02/cracked-phone.png'),(34,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1620;s:4:\"file\";s:25:\"2024/02/cracked-phone.png\";s:8:\"filesize\";i:133630;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cracked-phone-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20213;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"cracked-phone-506x1024.png\";s:5:\"width\";i:506;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"cracked-phone-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9811;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"cracked-phone-768x1555.png\";s:5:\"width\";i:768;s:6:\"height\";i:1555;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:315462;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"cracked-phone-759x1536.png\";s:5:\"width\";i:759;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309095;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"cracked-phone-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25466;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"cracked-phone-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144985;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"cracked-phone-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30580;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"cracked-phone-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51047;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"cracked-phone-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63621;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"cracked-phone-480x972.png\";s:5:\"width\";i:480;s:6:\"height\";i:972;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140193;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(35,22,'_wp_attached_file','2024/02/device-repair-icon-3b.png'),(36,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:33:\"2024/02/device-repair-icon-3b.png\";s:8:\"filesize\";i:484;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:{}}}'),(37,23,'_wp_attached_file','2024/02/device-repair-5b.jpg'),(38,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1100;s:4:\"file\";s:28:\"2024/02/device-repair-5b.jpg\";s:8:\"filesize\";i:98657;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"device-repair-5b-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15191;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"device-repair-5b-745x1024.jpg\";s:5:\"width\";i:745;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109775;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"device-repair-5b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8352;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"device-repair-5b-768x1056.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114839;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"device-repair-5b-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20586;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"device-repair-5b-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90326;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"device-repair-5b-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22536;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"device-repair-5b-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35493;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"device-repair-5b-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35592;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"device-repair-5b-480x660.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51920;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(39,24,'_wp_attached_file','2024/02/device-repair-6.jpg'),(40,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:980;s:4:\"file\";s:27:\"2024/02/device-repair-6.jpg\";s:8:\"filesize\";i:92260;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"device-repair-6-245x300.jpg\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"device-repair-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"device-repair-6-768x941.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:941;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99658;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"device-repair-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17969;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:27:\"device-repair-6-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73129;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"device-repair-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20158;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"device-repair-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31608;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"device-repair-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34241;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"device-repair-6-480x588.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44934;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(41,25,'_wp_attached_file','2024/02/device-repair-mask-01.png'),(42,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:700;s:4:\"file\";s:33:\"2024/02/device-repair-mask-01.png\";s:8:\"filesize\";i:9326;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-300x263.png\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1624;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-768x672.png\";s:5:\"width\";i:768;s:6:\"height\";i:672;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10279;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3675;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7196;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4175;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5818;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4268;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:33:\"device-repair-mask-01-480x420.png\";s:5:\"width\";i:480;s:6:\"height\";i:420;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6339;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,26,'_wp_attached_file','2024/02/device-repair-22.jpg'),(44,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2024/02/device-repair-22.jpg\";s:8:\"filesize\";i:59412;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"device-repair-22-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17222;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"device-repair-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7680;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"device-repair-22-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74890;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"device-repair-22-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18663;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"device-repair-22-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72383;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"device-repair-22-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20290;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"device-repair-22-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30797;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"device-repair-22-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32785;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"device-repair-22-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35386;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45,27,'_wp_attached_file','2024/02/device-repair-25.jpg'),(46,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2024/02/device-repair-25.jpg\";s:8:\"filesize\";i:38075;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"device-repair-25-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16562;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"device-repair-25-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7959;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"device-repair-25-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57356;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"device-repair-25-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17462;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"device-repair-25-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54556;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"device-repair-25-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19204;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"device-repair-25-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27351;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"device-repair-25-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25998;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"device-repair-25-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30122;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47,28,'_wp_attached_file','2024/02/device-repair-24.jpg'),(48,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2024/02/device-repair-24.jpg\";s:8:\"filesize\";i:40879;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"device-repair-24-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16169;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"device-repair-24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7758;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"device-repair-24-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60555;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"device-repair-24-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16441;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"device-repair-24-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56722;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"device-repair-24-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18402;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"device-repair-24-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26558;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"device-repair-24-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28184;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"device-repair-24-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30630;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49,29,'_wp_attached_file','2024/02/device-repair-8.jpg'),(50,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1280;s:4:\"file\";s:27:\"2024/02/device-repair-8.jpg\";s:8:\"filesize\";i:139973;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"device-repair-8-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13282;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"device-repair-8-1024x655.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94242;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"device-repair-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7995;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"device-repair-8-768x492.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56758;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"device-repair-8-1536x983.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:983;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192209;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"device-repair-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19374;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"device-repair-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101686;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"device-repair-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21606;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"device-repair-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33066;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:28:\"device-repair-8-1080x691.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104386;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"device-repair-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36382;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:28:\"device-repair-8-1280x819.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140897;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:27:\"device-repair-8-980x627.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87838;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"device-repair-8-480x307.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51,30,'_wp_attached_file','2024/02/device-repair-16.jpg'),(52,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1280;s:4:\"file\";s:28:\"2024/02/device-repair-16.jpg\";s:8:\"filesize\";i:50664;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"device-repair-16-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12154;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"device-repair-16-1024x655.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"device-repair-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"device-repair-16-768x492.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36852;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"device-repair-16-1536x983.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:983;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96204;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:28:\"device-repair-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16331;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:29:\"device-repair-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57883;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:28:\"device-repair-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17690;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:28:\"device-repair-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24230;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:29:\"device-repair-16-1080x691.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59041;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:28:\"device-repair-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23848;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:29:\"device-repair-16-1280x819.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74868;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:28:\"device-repair-16-980x627.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51607;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:28:\"device-repair-16-480x307.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20652;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(57,31,'_edit_lock','1708193134:1'),(58,31,'_et_pb_use_builder','on'),(59,31,'_et_gb_content_width',''),(60,31,'footnotes',''),(61,32,'footnotes',''),(62,31,'_edit_last','1'),(63,31,'_et_pb_post_hide_nav','default'),(64,31,'_et_pb_page_layout','et_right_sidebar'),(65,31,'_et_pb_side_nav','off'),(67,34,'_wp_attached_file','2024/02/FB_IMG_1688632594213.jpg'),(68,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2024/02/FB_IMG_1688632594213.jpg\";s:8:\"filesize\";i:120507;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14955;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"FB_IMG_1688632594213-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91782;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17763;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1688632594213-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133012;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19900;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33842;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33136;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144863;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632594213-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36145;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(69,35,'_wp_attached_file','2024/02/FB_IMG_1688632609808.jpg'),(70,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2024/02/FB_IMG_1688632609808.jpg\";s:8:\"filesize\";i:59614;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9926;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"FB_IMG_1688632609808-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85255;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3153;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52746;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12855;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1688632609808-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79036;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13784;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22128;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21886;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79871;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688632609808-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22834;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(71,36,'_wp_attached_file','2024/02/FB_IMG_1688633442222.jpg'),(72,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2024/02/FB_IMG_1688633442222.jpg\";s:8:\"filesize\";i:168191;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19637;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"FB_IMG_1688633442222-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209106;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5708;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123596;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24387;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1688633442222-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179330;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27089;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45761;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44803;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195028;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1688633442222-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48386;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(73,37,'_wp_attached_file','2024/02/FB_IMG_1696592572670.jpg'),(74,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:32:\"2024/02/FB_IMG_1696592572670.jpg\";s:8:\"filesize\";i:165767;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592572670-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8954;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592572670-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81899;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592572670-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5073;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592572670-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138499;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592572670-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168717;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592572670-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19727;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592572670-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107957;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592572670-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21461;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592572670-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33751;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592572670-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32122;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:34:\"FB_IMG_1696592572670-1080x1800.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249225;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592572670-980x1742.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1742;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208660;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592572670-480x853.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57942;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75,38,'_wp_attached_file','2024/02/FB_IMG_1696592594391.jpg'),(76,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1440;s:4:\"file\";s:32:\"2024/02/FB_IMG_1696592594391.jpg\";s:8:\"filesize\";i:142623;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592594391-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15922;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592594391-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592594391-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6520;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592594391-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118582;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592594391-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22577;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592594391-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133482;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592594391-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24728;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592594391-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39645;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592594391-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39001;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592594391-980x1307.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176639;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592594391-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53680;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77,39,'_wp_attached_file','2024/02/FB_IMG_1696592608347.jpg'),(78,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1440;s:4:\"file\";s:32:\"2024/02/FB_IMG_1696592608347.jpg\";s:8:\"filesize\";i:142656;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592608347-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10467;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592608347-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107131;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592608347-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4369;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592608347-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107131;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592608347-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16783;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592608347-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123711;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592608347-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18374;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592608347-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30753;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592608347-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29251;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:33:\"FB_IMG_1696592608347-980x1307.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170161;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1696592608347-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42253;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(79,40,'_wp_attached_file','2024/02/IMG_2670-scaled.jpeg'),(80,40,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/02/IMG_2670-scaled.jpeg\";s:8:\"filesize\";i:564716;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"IMG_2670-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14467;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"IMG_2670-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112409;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IMG_2670-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6506;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"IMG_2670-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68510;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"IMG_2670-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229629;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"IMG_2670-2048x1536.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:381760;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"IMG_2670-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20342;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"IMG_2670-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108493;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"IMG_2670-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22165;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"IMG_2670-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34217;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:22:\"IMG_2670-1080x810.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124562;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"IMG_2670-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42765;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:23:\"IMG_2670-2880x1800.jpeg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:597583;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:22:\"IMG_2670-1280x960.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166665;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:21:\"IMG_2670-980x735.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104814;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"IMG_2670-480x360.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30744;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}s:14:\"original_image\";s:13:\"IMG_2670.jpeg\";}'),(81,41,'_wp_attached_file','2024/02/IMG_3593-scaled.jpeg'),(82,41,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:28:\"2024/02/IMG_3593-scaled.jpeg\";s:8:\"filesize\";i:893562;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"IMG_3593-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26024;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"IMG_3593-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180350;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IMG_3593-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17048;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"IMG_3593-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108869;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_3593-1536x864.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:369728;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"IMG_3593-2048x1152.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:611200;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"IMG_3593-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41244;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"IMG_3593-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221469;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"IMG_3593-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45816;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"IMG_3593-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70892;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:22:\"IMG_3593-1080x608.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198268;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"IMG_3593-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75747;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:23:\"IMG_3593-2880x1800.jpeg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1196428;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:22:\"IMG_3593-1280x720.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267400;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:21:\"IMG_3593-980x551.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167674;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"IMG_3593-480x270.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49750;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}s:14:\"original_image\";s:13:\"IMG_3593.jpeg\";}'),(83,42,'_wp_attached_file','2024/02/IMG_20230705_224104_892.webp'),(84,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:36:\"2024/02/IMG_20230705_224104_892.webp\";s:8:\"filesize\";i:25150;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3520;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"IMG_20230705_224104_892-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17752;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1718;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12152;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-400x250.webp\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4022;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:37:\"IMG_20230705_224104_892-1080x675.webp\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17058;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-400x284.webp\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4200;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-510x382.webp\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6068;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-400x516.webp\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5714;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-980x980.webp\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17080;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_892-480x480.webp\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(85,43,'_wp_attached_file','2024/02/IMG_20230705_224104_962.webp'),(86,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:36:\"2024/02/IMG_20230705_224104_962.webp\";s:8:\"filesize\";i:191204;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18930;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"IMG_20230705_224104_962-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:148254;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6298;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:93538;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-400x250.webp\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21550;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:37:\"IMG_20230705_224104_962-1080x675.webp\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:132466;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-400x284.webp\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23800;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-510x382.webp\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37762;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-400x516.webp\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:39264;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-980x980.webp\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:138954;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:36:\"IMG_20230705_224104_962-480x480.webp\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:42322;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(87,44,'_wp_attached_file','2024/02/IMG_20230710_121138_491.jpg'),(88,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1139;s:4:\"file\";s:35:\"2024/02/IMG_20230710_121138_491.jpg\";s:8:\"filesize\";i:253323;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-253x300.jpg\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21892;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"IMG_20230710_121138_491-863x1024.jpg\";s:5:\"width\";i:863;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212840;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8090;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-768x911.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:911;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170552;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29595;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-960x675.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180472;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32710;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53910;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53608;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_121138_491-480x570.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69673;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(89,45,'_wp_attached_file','2024/02/IMG_20230710_122318_249.jpg'),(90,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:35:\"2024/02/IMG_20230710_122318_249.jpg\";s:8:\"filesize\";i:144906;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6981;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93473;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24934;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:36:\"IMG_20230710_122318_249-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159176;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27773;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45029;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48214;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146051;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:35:\"IMG_20230710_122318_249-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40258;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(91,46,'_wp_attached_file','2024/02/图像-4.jpeg'),(92,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:2015;s:4:\"file\";s:21:\"2024/02/图像-4.jpeg\";s:8:\"filesize\";i:732211;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"图像-4-174x300.jpeg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14339;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"图像-4-595x1024.jpeg\";s:5:\"width\";i:595;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139855;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"图像-4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7005;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"图像-4-768x1323.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1323;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222089;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"图像-4-892x1536.jpeg\";s:5:\"width\";i:892;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:291691;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"图像-4-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27098;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"图像-4-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171978;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"图像-4-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29884;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"图像-4-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49582;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:23:\"图像-4-1080x1860.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:1860;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:409253;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"图像-4-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52999;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:23:\"图像-4-1170x1800.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:499875;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:22:\"图像-4-980x1688.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:1688;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:345177;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"图像-4-480x827.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:827;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(93,47,'_wp_attached_file','2024/02/图像-5.jpeg'),(94,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1121;s:6:\"height\";i:1999;s:4:\"file\";s:21:\"2024/02/图像-5.jpeg\";s:8:\"filesize\";i:739424;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"图像-5-168x300.jpeg\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14836;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"图像-5-574x1024.jpeg\";s:5:\"width\";i:574;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147140;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"图像-5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7326;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"图像-5-768x1370.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247786;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"图像-5-861x1536.jpeg\";s:5:\"width\";i:861;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304050;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"图像-5-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29331;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"图像-5-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189080;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"图像-5-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32531;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"图像-5-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54489;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:23:\"图像-5-1080x1926.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:1926;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:450535;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"图像-5-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58059;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:23:\"图像-5-1121x1800.jpeg\";s:5:\"width\";i:1121;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:512333;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:22:\"图像-5-980x1748.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:1748;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:382102;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"图像-5-480x856.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:856;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(95,48,'_wp_attached_file','2024/02/图像-6.jpeg'),(96,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1792;s:6:\"height\";i:1161;s:4:\"file\";s:21:\"2024/02/图像-6.jpeg\";s:8:\"filesize\";i:754863;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"图像-6-300x194.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14796;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"图像-6-1024x663.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"图像-6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"图像-6-768x498.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78720;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"图像-6-1536x995.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:995;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272048;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"图像-6-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22994;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"图像-6-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138769;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"图像-6-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26170;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"图像-6-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42498;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:22:\"图像-6-1080x700.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145401;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"图像-6-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43691;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:22:\"图像-6-1280x829.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:829;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196750;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:21:\"图像-6-980x635.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122590;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"图像-6-480x311.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33149;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(97,49,'_wp_attached_file','2024/02/图像-8.jpeg'),(98,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2046;s:6:\"height\";i:1126;s:4:\"file\";s:21:\"2024/02/图像-8.jpeg\";s:8:\"filesize\";i:890035;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"图像-8-300x165.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13057;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"图像-8-1024x564.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122355;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"图像-8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6655;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"图像-8-768x423.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71578;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"图像-8-1536x845.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:845;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254715;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"图像-8-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24605;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"图像-8-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155085;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"图像-8-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27814;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"图像-8-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46360;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:22:\"图像-8-1080x594.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135206;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"图像-8-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50111;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:22:\"图像-8-1280x704.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182543;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:21:\"图像-8-980x539.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113072;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"图像-8-480x264.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(99,50,'_wp_attached_file','2024/02/370086272_2386337848225386_5064394146587414344_n.jpg'),(100,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:375;s:6:\"height\";i:280;s:4:\"file\";s:60:\"2024/02/370086272_2386337848225386_5064394146587414344_n.jpg\";s:8:\"filesize\";i:11275;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"370086272_2386337848225386_5064394146587414344_n-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8029;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"370086272_2386337848225386_5064394146587414344_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4124;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:60:\"370086272_2386337848225386_5064394146587414344_n-375x250.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11924;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(101,51,'_wp_attached_file','2024/02/fitness-trainer-icon-white-padding-05@2x.png'),(102,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:52:\"2024/02/fitness-trainer-icon-white-padding-05@2x.png\";s:8:\"filesize\";i:872;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:{}}}'),(103,52,'_wp_attached_file','2024/02/fitness-trainer-icon-white-padding-06@2x.png'),(104,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:52:\"2024/02/fitness-trainer-icon-white-padding-06@2x.png\";s:8:\"filesize\";i:612;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:{}}}'),(105,53,'_wp_attached_file','2024/02/fitness-trainer-icon-white-padding-04@2x.png'),(106,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:52:\"2024/02/fitness-trainer-icon-white-padding-04@2x.png\";s:8:\"filesize\";i:680;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:{}}}'),(107,54,'_wp_attached_file','2024/02/portrait-square-11.jpg'),(108,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:30:\"2024/02/portrait-square-11.jpg\";s:8:\"filesize\";i:11686;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"portrait-square-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11586;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"portrait-square-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4188;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"portrait-square-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12246;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"portrait-square-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13900;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"portrait-square-11-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17287;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(109,55,'_wp_attached_file','2024/02/portrait-square-05.jpg'),(110,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:30:\"2024/02/portrait-square-05.jpg\";s:8:\"filesize\";i:11439;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"portrait-square-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11690;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"portrait-square-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4590;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"portrait-square-05-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12312;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"portrait-square-05-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13712;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"portrait-square-05-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16871;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(111,56,'_wp_attached_file','2024/02/personal-trainer-2.jpg'),(112,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:750;s:4:\"file\";s:30:\"2024/02/personal-trainer-2.jpg\";s:8:\"filesize\";i:40126;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8313;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"personal-trainer-2-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53610;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4795;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34508;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12054;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"personal-trainer-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56517;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13110;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20198;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26447;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-980x681.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50303;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"personal-trainer-2-480x333.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16890;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(113,57,'_wp_attached_file','2024/02/personal-trainer-1.jpg'),(114,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2024/02/personal-trainer-1.jpg\";s:8:\"filesize\";i:111425;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10345;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"personal-trainer-1-1024x655.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5153;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-768x492.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42163;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"personal-trainer-1-1536x983.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:983;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122035;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15705;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"personal-trainer-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70178;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17309;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25420;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:31:\"personal-trainer-1-1080x691.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71567;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21353;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:31:\"personal-trainer-1-1280x819.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92695;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-980x627.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61929;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"personal-trainer-1-480x307.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21012;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(115,58,'_wp_attached_file','2024/02/test2.png'),(116,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1181;s:4:\"file\";s:17:\"2024/02/test2.png\";s:8:\"filesize\";i:177387;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"test2-300x177.png\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14811;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"test2-1024x605.png\";s:5:\"width\";i:1024;s:6:\"height\";i:605;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111671;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"test2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8122;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"test2-768x454.png\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70470;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"test2-1536x907.png\";s:5:\"width\";i:1536;s:6:\"height\";i:907;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:217515;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:17:\"test2-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24772;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:18:\"test2-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128222;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:17:\"test2-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28362;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:17:\"test2-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45473;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:18:\"test2-1080x638.png\";s:5:\"width\";i:1080;s:6:\"height\";i:638;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122150;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:17:\"test2-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51116;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:18:\"test2-1280x756.png\";s:5:\"width\";i:1280;s:6:\"height\";i:756;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158518;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:17:\"test2-980x579.png\";s:5:\"width\";i:980;s:6:\"height\";i:579;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103212;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:17:\"test2-480x283.png\";s:5:\"width\";i:480;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31815;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(117,59,'_wp_attached_file','2024/02/personal-trainer-3.jpg'),(118,59,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:770;s:4:\"file\";s:30:\"2024/02/personal-trainer-3.jpg\";s:8:\"filesize\";i:122219;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14425;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"personal-trainer-3-1024x616.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:616;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7376;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-768x462.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74564;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24671;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"personal-trainer-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135346;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28176;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45834;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:31:\"personal-trainer-3-1080x650.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131567;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48043;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-980x590.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112343;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"personal-trainer-3-480x289.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32770;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(119,60,'_wp_attached_file','2024/02/personal-trainer-4.jpg'),(120,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:30:\"2024/02/personal-trainer-4.jpg\";s:8:\"filesize\";i:77086;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12194;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"personal-trainer-4-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77051;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6942;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50552;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20775;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"personal-trainer-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93005;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23373;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35837;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:31:\"personal-trainer-4-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83871;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38426;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73091;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"personal-trainer-4-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24849;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(121,61,'_wp_attached_file','2024/02/personal-trainer-5c.jpg'),(122,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2024/02/personal-trainer-5c.jpg\";s:8:\"filesize\";i:122467;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11586;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"personal-trainer-5c-1024x553.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71416;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6531;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-768x415.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46219;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"personal-trainer-5c-1536x829.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:829;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131711;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20132;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"personal-trainer-5c-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88821;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22070;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32715;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:32:\"personal-trainer-5c-1080x583.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77220;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30281;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:32:\"personal-trainer-5c-1280x691.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100117;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-980x529.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66995;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"personal-trainer-5c-480x259.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23176;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(123,62,'_wp_attached_file','2024/02/fitness-trainer-background-01@2x.png'),(124,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2880;s:6:\"height\";i:1360;s:4:\"file\";s:44:\"2024/02/fitness-trainer-background-01@2x.png\";s:8:\"filesize\";i:478299;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-300x142.png\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14898;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"fitness-trainer-background-01@2x-1024x484.png\";s:5:\"width\";i:1024;s:6:\"height\";i:484;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97796;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10104;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-768x363.png\";s:5:\"width\";i:768;s:6:\"height\";i:363;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62303;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"fitness-trainer-background-01@2x-1536x725.png\";s:5:\"width\";i:1536;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196599;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"fitness-trainer-background-01@2x-2048x967.png\";s:5:\"width\";i:2048;s:6:\"height\";i:967;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:341327;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27944;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:45:\"fitness-trainer-background-01@2x-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141702;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30727;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48914;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:45:\"fitness-trainer-background-01@2x-1080x510.png\";s:5:\"width\";i:1080;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106873;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52768;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:45:\"fitness-trainer-background-01@2x-1280x604.png\";s:5:\"width\";i:1280;s:6:\"height\";i:604;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142668;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-980x463.png\";s:5:\"width\";i:980;s:6:\"height\";i:463;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89890;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:44:\"fitness-trainer-background-01@2x-480x227.png\";s:5:\"width\";i:480;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28625;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(126,64,'_wp_attached_file','2024/02/10.png'),(127,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2024/02/10.png\";s:8:\"filesize\";i:11478;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"10-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7188;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3549;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:14:\"10-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9467;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:14:\"10-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9662;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:14:\"10-500x382.png\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9322;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:14:\"10-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9334;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:14:\"10-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(128,65,'_wp_attached_file','2024/02/11.png'),(129,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2024/02/11.png\";s:8:\"filesize\";i:11035;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7526;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3830;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:14:\"11-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10015;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:14:\"11-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10171;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:14:\"11-500x382.png\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8928;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:14:\"11-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8951;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:14:\"11-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12735;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(130,66,'_wp_attached_file','2024/02/12.png'),(131,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2024/02/12.png\";s:8:\"filesize\";i:11411;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"12-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7972;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3944;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:14:\"12-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10884;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:14:\"12-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11056;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:14:\"12-500x382.png\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9424;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:14:\"12-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9438;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:14:\"12-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14311;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(132,9,'_et_pb_built_for_post_type','page'),(133,67,'footnotes',''),(134,9,'_et_pb_ab_subjects',''),(135,9,'_et_pb_enable_shortcode_tracking',''),(136,9,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"9\" /]'),(137,9,'_et_pb_custom_css',''),(138,9,'_et_pb_gutter_width','3'),(139,9,'_thumbnail_id','0'),(140,9,'_global_colors_info','{}'),(141,9,'_et_pb_first_image',''),(142,9,'_et_pb_truncate_post',''),(143,9,'_et_pb_truncate_post_date',''),(144,9,'_et_builder_version','VB|Divi|4.22.0'),(145,9,'_et_pb_show_page_creation','off'),(146,70,'_edit_lock','1708671622:1'),(147,70,'_wp_trash_meta_status','publish'),(148,70,'_wp_trash_meta_time','1708671625'),(150,9,'_et_builder_dynamic_assets_loading_attr_threshold','6'),(154,71,'_edit_lock','1708718306:1'),(155,71,'_et_pb_use_builder','on'),(156,71,'_et_gb_content_width',''),(157,71,'footnotes',''),(158,72,'footnotes',''),(159,71,'_edit_last','1'),(160,71,'_et_pb_post_hide_nav','default'),(161,71,'_et_pb_page_layout','et_right_sidebar'),(162,71,'_et_pb_side_nav','off'),(163,73,'_wp_attached_file','2024/02/sight-seeing-59.jpg'),(164,73,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-59.jpg\";s:8:\"filesize\";i:90496;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-59-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11605;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-59-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5109;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-59-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75064;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-59-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20277;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-59-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23765;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-59-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41120;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-59-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47031;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-59-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30244;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165,74,'_wp_attached_file','2024/02/sight-seeing-54.jpg'),(166,74,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-54.jpg\";s:8:\"filesize\";i:135384;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-54-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22239;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-54-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-54-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113146;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-54-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36468;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-54-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40948;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-54-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64896;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-54-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65620;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-54-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51974;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(167,75,'_wp_attached_file','2024/02/sight-seeing-56.jpg'),(168,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-56.jpg\";s:8:\"filesize\";i:31508;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-56-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6575;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-56-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3271;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-56-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31499;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-56-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10375;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-56-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11717;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-56-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18744;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-56-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20151;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-56-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14363;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(169,76,'_wp_attached_file','2024/02/sight-seeing-61.jpg'),(170,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-61.jpg\";s:8:\"filesize\";i:151318;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-61-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17991;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-61-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7161;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-61-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117501;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-61-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31525;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-61-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36990;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-61-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63898;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-61-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74021;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-61-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47521;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(171,77,'_wp_attached_file','2024/02/sight-seeing-51.jpg'),(172,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:852;s:4:\"file\";s:27:\"2024/02/sight-seeing-51.jpg\";s:8:\"filesize\";i:253577;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7495;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"sight-seeing-51-1024x485.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81494;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4635;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-768x364.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46205;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"sight-seeing-51-1536x727.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175145;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17406;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"sight-seeing-51-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117546;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19387;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32867;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:28:\"sight-seeing-51-1080x511.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89281;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36476;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:28:\"sight-seeing-51-1280x606.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124584;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-980x464.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73663;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-51-480x227.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18731;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(173,78,'_wp_attached_file','2024/02/sight-seeing-49.png'),(174,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:446;s:4:\"file\";s:27:\"2024/02/sight-seeing-49.png\";s:8:\"filesize\";i:232515;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"sight-seeing-49-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8157;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"sight-seeing-49-1024x228.png\";s:5:\"width\";i:1024;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69146;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-49-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5356;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-49-768x171.png\";s:5:\"width\";i:768;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41182;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"sight-seeing-49-1536x343.png\";s:5:\"width\";i:1536;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145054;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-49-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20902;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"sight-seeing-49-1080x446.png\";s:5:\"width\";i:1080;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123929;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-49-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23335;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-49-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37801;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:28:\"sight-seeing-49-1080x241.png\";s:5:\"width\";i:1080;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76703;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-49-400x446.png\";s:5:\"width\";i:400;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37633;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:28:\"sight-seeing-49-1280x285.png\";s:5:\"width\";i:1280;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104211;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:27:\"sight-seeing-49-980x219.png\";s:5:\"width\";i:980;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63762;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-49-480x107.png\";s:5:\"width\";i:480;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17962;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(175,79,'_wp_attached_file','2024/02/sight-seeing-58.jpg'),(176,79,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-58.jpg\";s:8:\"filesize\";i:51643;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-58-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7723;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-58-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2989;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-58-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46588;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-58-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12943;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-58-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15057;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-58-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24975;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-58-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22883;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-58-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18989;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177,80,'_wp_attached_file','2024/02/sight-seeing-57.jpg'),(178,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-57.jpg\";s:8:\"filesize\";i:28744;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-57-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-57-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2099;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-57-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27334;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-57-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6435;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-57-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7449;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-57-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13265;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-57-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17064;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-57-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9145;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(179,81,'_wp_attached_file','2024/02/sight-seeing-53.jpg'),(180,81,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-53.jpg\";s:8:\"filesize\";i:73536;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-53-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10782;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-53-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5090;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-53-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62261;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-53-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18250;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-53-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21638;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-53-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36006;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-53-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42804;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-53-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(181,82,'_wp_attached_file','2024/02/sight-seeing-62.jpg'),(182,82,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-62.jpg\";s:8:\"filesize\";i:150056;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-62-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19394;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-62-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8348;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-62-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116188;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-62-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33062;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-62-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38653;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-62-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64948;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-62-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73285;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-62-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(183,83,'_wp_attached_file','2024/02/sight-seeing-60.jpg'),(184,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2024/02/sight-seeing-60.jpg\";s:8:\"filesize\";i:80833;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-60-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12032;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-60-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5346;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-60-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68563;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-60-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20111;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-60-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23014;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-60-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38163;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-60-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42851;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-60-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29167;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(185,84,'_wp_attached_file','2024/02/sight-seeing-41.jpg'),(186,84,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1059;s:4:\"file\";s:27:\"2024/02/sight-seeing-41.jpg\";s:8:\"filesize\";i:366540;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-300x248.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26860;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"sight-seeing-41-1024x847.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:847;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222693;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10150;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-768x635.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134793;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33842;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"sight-seeing-41-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189615;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38355;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60890;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:28:\"sight-seeing-41-1080x894.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:894;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245805;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73641;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-980x811.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207474;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"sight-seeing-41-480x397.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59720;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(187,85,'_et_pb_built_for_post_type','page'),(188,71,'_et_pb_built_for_post_type','page'),(189,86,'footnotes',''),(190,71,'_et_pb_ab_subjects',''),(191,71,'_et_pb_enable_shortcode_tracking',''),(192,71,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"71\" /]'),(193,71,'_et_pb_custom_css',''),(194,71,'_et_pb_gutter_width','3'),(195,71,'_thumbnail_id','0'),(196,71,'_global_colors_info','{}'),(197,71,'_et_pb_first_image',''),(198,71,'_et_pb_truncate_post',''),(199,71,'_et_pb_truncate_post_date',''),(200,71,'_et_builder_version','VB|Divi|4.22.0'),(201,71,'_et_pb_show_page_creation','off'),(203,89,'footnotes',''),(204,90,'_edit_lock','1708720008:1'),(205,90,'_et_pb_use_builder','on'),(206,90,'_et_gb_content_width',''),(207,90,'footnotes',''),(208,91,'footnotes',''),(209,90,'_edit_last','1'),(210,90,'_et_pb_post_hide_nav','default'),(211,90,'_et_pb_page_layout','et_right_sidebar'),(212,90,'_et_pb_side_nav','off'),(213,92,'_wp_attached_file','2024/02/travel-landscape-01.jpg'),(214,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2024/02/travel-landscape-01.jpg\";s:8:\"filesize\";i:598755;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18537;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"travel-landscape-01-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7676;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102483;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"travel-landscape-01-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:370106;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29903;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"travel-landscape-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185182;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32862;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53640;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:32:\"travel-landscape-01-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194918;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55521;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:32:\"travel-landscape-01-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267651;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163706;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-01-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(215,93,'_wp_attached_file','2024/02/travel-coffee.jpg'),(216,93,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2024/02/travel-coffee.jpg\";s:8:\"filesize\";i:45995;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"travel-coffee-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11598;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"travel-coffee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4936;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"travel-coffee-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11902;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"travel-coffee-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39068;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"travel-coffee-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13139;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"travel-coffee-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19156;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"travel-coffee-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25278;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"travel-coffee-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33872;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(217,94,'_wp_attached_file','2024/02/travel-landscape-12.jpg'),(218,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2024/02/travel-landscape-12.jpg\";s:8:\"filesize\";i:54709;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-12-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13010;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4844;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12585;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"travel-landscape-12-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43036;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14124;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20642;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28832;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-12-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39038;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(219,95,'_wp_attached_file','2024/02/travel-landscape-05.jpg'),(220,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2024/02/travel-landscape-05.jpg\";s:8:\"filesize\";i:56058;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-05-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10732;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4557;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-05-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16136;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"travel-landscape-05-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52294;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-05-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17496;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-05-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27640;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-05-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27041;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-05-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(221,96,'_wp_attached_file','2024/02/travel-landscape-10.jpg'),(222,96,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2024/02/travel-landscape-10.jpg\";s:8:\"filesize\";i:86357;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-10-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5309;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19428;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"travel-landscape-10-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76100;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22089;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36515;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35426;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-10-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50725;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(223,97,'_wp_attached_file','2024/02/travel-landscape-08.jpg'),(224,97,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2024/02/travel-landscape-08.jpg\";s:8:\"filesize\";i:39907;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-08-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6491;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2580;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-08-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6285;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"travel-landscape-08-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30836;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-08-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7334;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-08-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11447;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-08-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16919;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-08-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24762;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(225,98,'_wp_attached_file','2024/02/travel-landscape-11.jpg'),(226,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2024/02/travel-landscape-11.jpg\";s:8:\"filesize\";i:33504;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-11-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6620;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3105;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9514;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"travel-landscape-11-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31665;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10474;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16348;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16193;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-11-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(227,99,'_wp_attached_file','2024/02/video-cover-01.jpg'),(228,99,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:26:\"2024/02/video-cover-01.jpg\";s:8:\"filesize\";i:63119;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"video-cover-01-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8978;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"video-cover-01-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51472;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"video-cover-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4918;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"video-cover-01-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33870;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:26:\"video-cover-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13071;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:27:\"video-cover-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52902;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:26:\"video-cover-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14366;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:26:\"video-cover-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21001;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:27:\"video-cover-01-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55317;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:26:\"video-cover-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23337;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:26:\"video-cover-01-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48234;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:26:\"video-cover-01-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(229,100,'_wp_attached_file','2024/02/travel-landscape-03.jpg'),(230,100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2024/02/travel-landscape-03.jpg\";s:8:\"filesize\";i:148839;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11164;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"travel-landscape-03-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64671;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6046;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42495;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"travel-landscape-03-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116532;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16288;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"travel-landscape-03-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67977;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17634;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25997;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:32:\"travel-landscape-03-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70260;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28570;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:32:\"travel-landscape-03-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89436;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60514;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-03-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21683;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(231,101,'_wp_attached_file','2024/02/travel-landscape-17.jpg'),(232,101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2024/02/travel-landscape-17.jpg\";s:8:\"filesize\";i:364112;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11991;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"travel-landscape-17-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5432;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59707;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"travel-landscape-17-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206733;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18753;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"travel-landscape-17-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105448;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20489;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32597;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:32:\"travel-landscape-17-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109449;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34567;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:32:\"travel-landscape-17-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149939;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92586;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-17-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26259;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(233,102,'_wp_attached_file','2024/02/travel-portrait-03.jpg'),(234,102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2024/02/travel-portrait-03.jpg\";s:8:\"filesize\";i:68339;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"travel-portrait-03-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"travel-portrait-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6435;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18140;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:30:\"travel-portrait-03-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59921;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20177;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30299;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"travel-portrait-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34710;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"travel-portrait-03-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47486;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(235,103,'_wp_attached_file','2024/02/travel-portrait-04.jpg'),(236,103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2024/02/travel-portrait-04.jpg\";s:8:\"filesize\";i:55217;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"travel-portrait-04-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"travel-portrait-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5885;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17476;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:30:\"travel-portrait-04-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53030;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19406;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29028;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"travel-portrait-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31247;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"travel-portrait-04-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41919;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(237,104,'_wp_attached_file','2024/02/travel-portrait-01.jpg'),(238,104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2024/02/travel-portrait-01.jpg\";s:8:\"filesize\";i:43984;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"travel-portrait-01-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11344;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"travel-portrait-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5214;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15252;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:30:\"travel-portrait-01-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42520;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16829;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"travel-portrait-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24573;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"travel-portrait-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24804;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"travel-portrait-01-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32633;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(239,105,'_wp_attached_file','2024/02/travel-landscape-13.png'),(240,105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1105;s:4:\"file\";s:31:\"2024/02/travel-landscape-13.png\";s:8:\"filesize\";i:1816633;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66963;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"travel-landscape-13-1024x589.png\";s:5:\"width\";i:1024;s:6:\"height\";i:589;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:601269;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28303;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-768x442.png\";s:5:\"width\";i:768;s:6:\"height\";i:442;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:344693;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"travel-landscape-13-1536x884.png\";s:5:\"width\";i:1536;s:6:\"height\";i:884;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1350778;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113963;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"travel-landscape-13-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:716785;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122378;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194785;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:32:\"travel-landscape-13-1080x622.png\";s:5:\"width\";i:1080;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:668968;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185410;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:32:\"travel-landscape-13-1280x737.png\";s:5:\"width\";i:1280;s:6:\"height\";i:737;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:939134;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-980x564.png\";s:5:\"width\";i:980;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:551071;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-13-480x276.png\";s:5:\"width\";i:480;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(241,106,'_wp_attached_file','2024/02/couple2.png'),(242,106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:807;s:4:\"file\";s:19:\"2024/02/couple2.png\";s:8:\"filesize\";i:322986;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"couple2-300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34788;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"couple2-1024x430.png\";s:5:\"width\";i:1024;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:310178;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"couple2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"couple2-768x323.png\";s:5:\"width\";i:768;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183728;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"couple2-1536x646.png\";s:5:\"width\";i:1536;s:6:\"height\";i:646;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:653079;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:19:\"couple2-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105979;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:20:\"couple2-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:649760;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:19:\"couple2-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122142;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:19:\"couple2-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201587;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:20:\"couple2-1080x454.png\";s:5:\"width\";i:1080;s:6:\"height\";i:454;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:342394;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:19:\"couple2-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236137;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:20:\"couple2-1280x538.png\";s:5:\"width\";i:1280;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:462684;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:19:\"couple2-980x412.png\";s:5:\"width\";i:980;s:6:\"height\";i:412;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:286014;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:19:\"couple2-480x202.png\";s:5:\"width\";i:480;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79538;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(243,107,'_wp_attached_file','2024/02/wedding-planner-30.jpg'),(244,107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1014;s:4:\"file\";s:30:\"2024/02/wedding-planner-30.jpg\";s:8:\"filesize\";i:62038;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4216;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-768x973.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:973;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60764;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14517;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52594;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16143;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24337;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22312;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"wedding-planner-30-480x608.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29559;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(245,108,'_wp_attached_file','2024/02/divider.png'),(246,108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2024/02/divider.png\";s:8:\"filesize\";i:111;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:{}}}'),(247,109,'_wp_attached_file','2024/02/wedding-planner-32.jpg'),(248,109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:588;s:4:\"file\";s:30:\"2024/02/wedding-planner-32.jpg\";s:8:\"filesize\";i:42249;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wedding-planner-32-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10286;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wedding-planner-32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4248;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"wedding-planner-32-768x564.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40789;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-32-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13844;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-32-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15039;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-32-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22504;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"wedding-planner-32-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19637;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"wedding-planner-32-480x353.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20342;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249,110,'_wp_attached_file','2024/02/img-03.png'),(250,110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1002;s:4:\"file\";s:18:\"2024/02/img-03.png\";s:8:\"filesize\";i:305302;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"img-03-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81547;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"img-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31484;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"img-03-768x962.png\";s:5:\"width\";i:768;s:6:\"height\";i:962;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:749495;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:18:\"img-03-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126796;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:18:\"img-03-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:520073;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:18:\"img-03-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141557;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:18:\"img-03-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239482;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:18:\"img-03-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:212425;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:18:\"img-03-480x601.png\";s:5:\"width\";i:480;s:6:\"height\";i:601;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:292631;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(251,111,'_wp_attached_file','2024/02/wedding-planner-04.jpg'),(252,111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1057;s:4:\"file\";s:30:\"2024/02/wedding-planner-04.jpg\";s:8:\"filesize\";i:233427;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wedding-planner-04-227x300.jpg\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16872;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"wedding-planner-04-775x1024.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148340;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wedding-planner-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6818;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"wedding-planner-04-768x1015.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1015;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146004;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22560;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:30:\"wedding-planner-04-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118464;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25441;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41583;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"wedding-planner-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42702;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"wedding-planner-04-480x634.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61372;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(253,112,'_wp_attached_file','2024/02/wedding-planner-07.jpg'),(254,112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:542;s:4:\"file\";s:30:\"2024/02/wedding-planner-07.jpg\";s:8:\"filesize\";i:127660;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wedding-planner-07-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wedding-planner-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7610;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"wedding-planner-07-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66708;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-07-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24174;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-07-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26455;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-07-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39189;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"wedding-planner-07-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36817;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"wedding-planner-07-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33346;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(255,113,'_wp_attached_file','2024/02/wedding-planner-06.jpg'),(256,113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:542;s:4:\"file\";s:30:\"2024/02/wedding-planner-06.jpg\";s:8:\"filesize\";i:171883;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wedding-planner-06-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20031;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wedding-planner-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8481;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"wedding-planner-06-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94284;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-06-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29998;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-06-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34282;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-06-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53268;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"wedding-planner-06-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54932;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"wedding-planner-06-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(257,114,'_wp_attached_file','2024/02/wedding-planner-03.jpg'),(258,114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1057;s:4:\"file\";s:30:\"2024/02/wedding-planner-03.jpg\";s:8:\"filesize\";i:228605;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wedding-planner-03-227x300.jpg\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15198;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"wedding-planner-03-775x1024.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133086;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wedding-planner-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6846;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"wedding-planner-03-768x1015.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1015;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130354;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22338;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:30:\"wedding-planner-03-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120647;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24525;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39386;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"wedding-planner-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36260;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"wedding-planner-03-480x634.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51636;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259,115,'_wp_attached_file','2024/02/wedding-planner-01.jpg'),(260,115,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:608;s:4:\"file\";s:30:\"2024/02/wedding-planner-01.jpg\";s:8:\"filesize\";i:145505;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wedding-planner-01-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14903;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wedding-planner-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5725;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"wedding-planner-01-768x584.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69431;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19865;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22112;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34645;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"wedding-planner-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32919;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"wedding-planner-01-480x365.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(261,116,'_wp_attached_file','2024/02/wedding-planner-02.jpg'),(262,116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:542;s:4:\"file\";s:30:\"2024/02/wedding-planner-02.jpg\";s:8:\"filesize\";i:192873;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"wedding-planner-02-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17906;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"wedding-planner-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9383;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"wedding-planner-02-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91357;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26363;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30679;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"wedding-planner-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50252;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"wedding-planner-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67603;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"wedding-planner-02-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39623;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(263,117,'_edit_lock','1708721474:1'),(264,117,'_et_pb_use_builder','on'),(265,117,'_et_gb_content_width',''),(266,117,'footnotes',''),(267,118,'footnotes',''),(268,117,'_edit_last','1'),(269,117,'_et_pb_post_hide_nav','default'),(270,117,'_et_pb_page_layout','et_right_sidebar'),(271,117,'_et_pb_side_nav','off'),(273,117,'_et_pb_built_for_post_type','page'),(274,120,'footnotes',''),(275,117,'_et_pb_ab_subjects',''),(276,117,'_et_pb_enable_shortcode_tracking',''),(277,117,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"117\" /]'),(278,117,'_et_pb_custom_css',''),(279,117,'_et_pb_gutter_width','3'),(280,117,'_thumbnail_id','0'),(281,117,'_global_colors_info','{}'),(282,117,'_et_pb_first_image',''),(283,117,'_et_pb_truncate_post',''),(284,117,'_et_pb_truncate_post_date',''),(285,117,'_et_builder_version','VB|Divi|4.22.0'),(286,117,'_et_pb_show_page_creation','off'),(287,90,'_wp_trash_meta_status','draft'),(288,90,'_wp_trash_meta_time','1708721980'),(289,90,'_wp_desired_post_slug',''),(290,117,'_wp_trash_meta_status','draft'),(291,117,'_wp_trash_meta_time','1708721980'),(292,117,'_wp_desired_post_slug',''),(293,31,'_wp_trash_meta_status','draft'),(294,31,'_wp_trash_meta_time','1708721980'),(295,31,'_wp_desired_post_slug',''),(296,121,'_edit_lock','1708811715:1'),(297,121,'_et_pb_use_builder','on'),(298,121,'_et_gb_content_width',''),(299,121,'footnotes',''),(300,122,'footnotes',''),(301,121,'_edit_last','1'),(302,121,'_et_pb_post_hide_nav','default'),(303,121,'_et_pb_page_layout','et_right_sidebar'),(304,121,'_et_pb_side_nav','off'),(305,123,'_wp_attached_file','2024/02/01_img.jpg'),(306,123,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2024/02/01_img.jpg\";s:8:\"filesize\";i:220585;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"01_img-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8542;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"01_img-1024x533.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42936;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"01_img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5024;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"01_img-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28103;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"01_img-1536x800.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84939;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:18:\"01_img-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13311;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:19:\"01_img-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54221;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:18:\"01_img-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14030;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:18:\"01_img-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19876;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:19:\"01_img-1080x563.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46916;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:18:\"01_img-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18565;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:19:\"01_img-1280x667.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61758;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:18:\"01_img-980x510.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40081;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:18:\"01_img-480x250.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15326;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(307,124,'_wp_attached_file','2024/02/02_img.jpg'),(308,124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:850;s:4:\"file\";s:18:\"2024/02/02_img.jpg\";s:8:\"filesize\";i:188546;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"02_img-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12255;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"02_img-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79477;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"02_img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6413;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"02_img-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48700;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:18:\"02_img-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17549;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:19:\"02_img-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85125;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:18:\"02_img-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19208;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:18:\"02_img-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28467;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:19:\"02_img-1080x717.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:717;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88258;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:18:\"02_img-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29591;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:18:\"02_img-980x651.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74360;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:18:\"02_img-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23554;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(309,125,'_wp_attached_file','2024/02/03_img.jpg'),(310,125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:850;s:4:\"file\";s:18:\"2024/02/03_img.jpg\";s:8:\"filesize\";i:214996;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"03_img-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14546;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"03_img-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105524;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"03_img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7307;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"03_img-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66838;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:18:\"03_img-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22159;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:19:\"03_img-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112271;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:18:\"03_img-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24928;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:18:\"03_img-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39714;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:19:\"03_img-1080x717.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:717;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115689;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:18:\"03_img-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37529;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:18:\"03_img-980x651.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99112;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:18:\"03_img-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30931;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(311,126,'_wp_attached_file','2024/02/07_img.jpg'),(312,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:798;s:4:\"file\";s:18:\"2024/02/07_img.jpg\";s:8:\"filesize\";i:263110;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"07_img-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7972;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"07_img-1024x426.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47985;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"07_img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5364;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"07_img-768x319.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29935;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"07_img-1536x638.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99926;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:18:\"07_img-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15945;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:19:\"07_img-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82094;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:18:\"07_img-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17079;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:18:\"07_img-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25484;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:19:\"07_img-1080x449.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52658;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:18:\"07_img-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23589;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:19:\"07_img-1280x532.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70498;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:18:\"07_img-980x407.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44420;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:18:\"07_img-480x200.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14897;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(314,128,'_wp_attached_file','2024/02/travel-landscape-19.jpg'),(315,128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1040;s:4:\"file\";s:31:\"2024/02/travel-landscape-19.jpg\";s:8:\"filesize\";i:158251;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5760;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"travel-landscape-19-1024x555.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46400;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2744;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-768x416.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26703;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"travel-landscape-19-1536x832.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:832;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100148;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10105;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"travel-landscape-19-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60344;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10964;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16997;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:32:\"travel-landscape-19-1080x585.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51371;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16013;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:32:\"travel-landscape-19-1280x693.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70597;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-980x531.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42756;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-19-480x260.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12038;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(316,129,'_wp_attached_file','2024/02/travel-person-iso.png'),(317,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1035;s:4:\"file\";s:29:\"2024/02/travel-person-iso.png\";s:8:\"filesize\";i:212133;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"travel-person-iso-290x300.png\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70140;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"travel-person-iso-989x1024.png\";s:5:\"width\";i:989;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:680469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"travel-person-iso-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19764;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"travel-person-iso-768x795.png\";s:5:\"width\";i:768;s:6:\"height\";i:795;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:433585;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:29:\"travel-person-iso-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47313;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:30:\"travel-person-iso-1000x675.png\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259185;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:29:\"travel-person-iso-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62488;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:29:\"travel-person-iso-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108782;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:29:\"travel-person-iso-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171268;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:30:\"travel-person-iso-980x1014.png\";s:5:\"width\";i:980;s:6:\"height\";i:1014;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:669677;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:29:\"travel-person-iso-480x497.png\";s:5:\"width\";i:480;s:6:\"height\";i:497;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(318,130,'_wp_attached_file','2024/02/travel-binoculars.jpg'),(319,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2024/02/travel-binoculars.jpg\";s:8:\"filesize\";i:47735;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"travel-binoculars-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"travel-binoculars-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5065;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:29:\"travel-binoculars-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14287;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:29:\"travel-binoculars-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41375;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:29:\"travel-binoculars-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15643;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:29:\"travel-binoculars-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22879;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:29:\"travel-binoculars-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25676;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:29:\"travel-binoculars-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34521;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(320,131,'_wp_attached_file','2024/02/travel-landscape-18.jpg'),(321,131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:677;s:4:\"file\";s:31:\"2024/02/travel-landscape-18.jpg\";s:8:\"filesize\";i:93336;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10117;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"travel-landscape-18-1024x542.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68797;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5724;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44599;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18534;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"travel-landscape-18-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84630;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20469;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31133;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:32:\"travel-landscape-18-1080x571.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74830;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29157;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-980x518.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64685;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-18-480x254.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21421;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(322,132,'_wp_attached_file','2024/02/travel-landscape-04.jpg'),(323,132,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2024/02/travel-landscape-04.jpg\";s:8:\"filesize\";i:136871;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-landscape-04-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19499;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-landscape-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7725;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33115;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"travel-landscape-04-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121735;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36772;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"travel-landscape-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59447;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"travel-landscape-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56718;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"travel-landscape-04-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(324,133,'_wp_attached_file','2024/02/travel-bank.jpg'),(325,133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2024/02/travel-bank.jpg\";s:8:\"filesize\";i:136826;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"travel-bank-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26011;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"travel-bank-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10375;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:23:\"travel-bank-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39570;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:23:\"travel-bank-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129963;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:23:\"travel-bank-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43350;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:23:\"travel-bank-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68084;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:23:\"travel-bank-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67123;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:23:\"travel-bank-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91924;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(327,135,'_edit_lock','1708807605:1'),(328,135,'_et_pb_use_builder','on'),(329,135,'_et_gb_content_width',''),(330,135,'footnotes',''),(331,136,'footnotes',''),(332,135,'_edit_last','1'),(333,135,'_et_pb_post_hide_nav','default'),(334,135,'_et_pb_page_layout','et_right_sidebar'),(335,135,'_et_pb_side_nav','off'),(336,137,'_wp_attached_file','2024/02/fitness-trainer-icon-white-padding-08@2x.png'),(337,137,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:52:\"2024/02/fitness-trainer-icon-white-padding-08@2x.png\";s:8:\"filesize\";i:844;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:{}}}'),(338,138,'_wp_attached_file','2024/02/fitness-trainer-icon-white-padding-02@2x.png'),(339,138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:52:\"2024/02/fitness-trainer-icon-white-padding-02@2x.png\";s:8:\"filesize\";i:709;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:{}}}'),(340,139,'_wp_attached_file','2024/02/fitness-trainer-icon-white-padding-03@2x.png'),(341,139,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:52:\"2024/02/fitness-trainer-icon-white-padding-03@2x.png\";s:8:\"filesize\";i:903;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:{}}}'),(343,135,'_et_pb_built_for_post_type','page'),(344,141,'footnotes',''),(345,135,'_et_pb_ab_subjects',''),(346,135,'_et_pb_enable_shortcode_tracking',''),(347,135,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"135\" /]'),(348,135,'_et_pb_custom_css',''),(349,135,'_et_pb_gutter_width','3'),(350,135,'_thumbnail_id','0'),(351,135,'_global_colors_info','{}'),(352,135,'_et_pb_first_image',''),(353,135,'_et_pb_truncate_post',''),(354,135,'_et_pb_truncate_post_date',''),(355,135,'_et_builder_version','VB|Divi|4.22.0'),(356,135,'_et_pb_show_page_creation','off'),(358,143,'footnotes',''),(359,144,'footnotes',''),(364,135,'_wp_page_template','default'),(365,145,'footnotes',''),(366,146,'_wp_attached_file','2024/02/personal-trainer-22.jpg'),(367,146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:790;s:4:\"file\";s:31:\"2024/02/personal-trainer-22.jpg\";s:8:\"filesize\";i:65222;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14385;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"personal-trainer-22-1024x749.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:749;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85287;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6402;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-768x562.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56084;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18980;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"personal-trainer-22-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82600;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20991;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31179;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29280;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-980x717.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:717;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80229;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"personal-trainer-22-480x351.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27980;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(368,147,'_wp_attached_file','2024/02/fitness-trainer-icon-dark-padding-08@2x.png'),(369,147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:51:\"2024/02/fitness-trainer-icon-dark-padding-08@2x.png\";s:8:\"filesize\";i:842;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:{}}}'),(370,148,'_wp_attached_file','2024/02/fitness-trainer-icon-dark-padding-06@2x.png'),(371,148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:51:\"2024/02/fitness-trainer-icon-dark-padding-06@2x.png\";s:8:\"filesize\";i:601;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:{}}}'),(372,149,'_wp_attached_file','2024/02/fitness-trainer-icon-dark-padding-05@2x.png'),(373,149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:112;s:4:\"file\";s:51:\"2024/02/fitness-trainer-icon-dark-padding-05@2x.png\";s:8:\"filesize\";i:866;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:{}}}'),(374,150,'_wp_attached_file','2024/02/personal-trainer-24b.jpg'),(375,150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:620;s:4:\"file\";s:32:\"2024/02/personal-trainer-24b.jpg\";s:8:\"filesize\";i:39332;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7471;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"personal-trainer-24b-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40954;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3675;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-768x372.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27207;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12264;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:33:\"personal-trainer-24b-1080x620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51316;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12466;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17819;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:33:\"personal-trainer-24b-1080x523.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44651;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13464;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-980x475.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39028;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:32:\"personal-trainer-24b-480x233.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13714;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(377,121,'_et_pb_built_for_post_type','page'),(378,152,'footnotes',''),(379,121,'_et_pb_ab_subjects',''),(380,121,'_et_pb_enable_shortcode_tracking',''),(381,121,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"121\" /]'),(382,121,'_et_pb_custom_css',''),(383,121,'_et_pb_gutter_width','3'),(384,121,'_thumbnail_id','0'),(385,121,'_global_colors_info','{}'),(386,121,'_et_pb_first_image',''),(387,121,'_et_pb_truncate_post',''),(388,121,'_et_pb_truncate_post_date',''),(389,121,'_et_builder_version','VB|Divi|4.22.0'),(391,154,'footnotes',''),(392,121,'_et_pb_show_page_creation','off'),(394,156,'footnotes',''),(396,121,'_et_builder_dynamic_assets_loading_attr_threshold','9'),(400,121,'_wp_page_template','default'),(401,157,'footnotes',''),(402,158,'_edit_lock','1708811740:1'),(403,158,'_et_pb_use_builder','on'),(404,158,'_et_gb_content_width',''),(405,158,'footnotes',''),(406,159,'footnotes',''),(407,158,'_edit_last','1'),(408,158,'_et_pb_post_hide_nav','default'),(409,158,'_et_pb_page_layout','et_right_sidebar'),(410,158,'_et_pb_side_nav','off'),(411,160,'_wp_attached_file','2024/02/personal-trainer-27.jpg'),(412,160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:750;s:4:\"file\";s:31:\"2024/02/personal-trainer-27.jpg\";s:8:\"filesize\";i:64980;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10607;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"personal-trainer-27-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66978;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5773;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43805;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17090;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:32:\"personal-trainer-27-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77405;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19157;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29000;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:32:\"personal-trainer-27-1080x633.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73219;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27376;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-980x574.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63221;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"personal-trainer-27-480x281.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(414,158,'_et_pb_built_for_post_type','page'),(415,162,'footnotes',''),(416,158,'_et_pb_ab_subjects',''),(417,158,'_et_pb_enable_shortcode_tracking',''),(418,158,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"158\" /]'),(419,158,'_et_pb_custom_css',''),(420,158,'_et_pb_gutter_width','3'),(421,158,'_thumbnail_id','0'),(422,158,'_global_colors_info','{}'),(423,158,'_et_pb_first_image',''),(424,158,'_et_pb_truncate_post',''),(425,158,'_et_pb_truncate_post_date',''),(426,158,'_et_builder_version','VB|Divi|4.22.0'),(427,158,'_et_pb_show_page_creation','off'),(429,164,'footnotes',''),(430,165,'_menu_item_type','post_type'),(431,165,'_menu_item_menu_item_parent','0'),(432,165,'_menu_item_object_id','158'),(433,165,'_menu_item_object','page'),(434,165,'_menu_item_target',''),(435,165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(436,165,'_menu_item_xfn',''),(437,165,'_menu_item_url',''),(439,166,'_menu_item_type','post_type'),(440,166,'_menu_item_menu_item_parent','0'),(441,166,'_menu_item_object_id','9'),(442,166,'_menu_item_object','page'),(443,166,'_menu_item_target',''),(444,166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(445,166,'_menu_item_xfn',''),(446,166,'_menu_item_url',''),(448,167,'_menu_item_type','post_type'),(449,167,'_menu_item_menu_item_parent','0'),(450,167,'_menu_item_object_id','135'),(451,167,'_menu_item_object','page'),(452,167,'_menu_item_target',''),(453,167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(454,167,'_menu_item_xfn',''),(455,167,'_menu_item_url',''),(457,168,'_menu_item_type','post_type'),(458,168,'_menu_item_menu_item_parent','0'),(459,168,'_menu_item_object_id','121'),(460,168,'_menu_item_object','page'),(461,168,'_menu_item_target',''),(462,168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(463,168,'_menu_item_xfn',''),(464,168,'_menu_item_url',''),(468,169,'_wp_trash_meta_status','publish'),(469,169,'_wp_trash_meta_time','1708814711'),(470,170,'_edit_lock','1708814842:1'),(471,170,'_wp_trash_meta_status','publish'),(472,170,'_wp_trash_meta_time','1708814850'),(473,171,'_wp_trash_meta_status','publish'),(474,171,'_wp_trash_meta_time','1708814861'),(477,172,'_wp_trash_meta_status','publish'),(478,172,'_wp_trash_meta_time','1708814915'),(495,173,'footnotes',''),(496,174,'_wp_attached_file','2024/02/Untitled-design-21.png'),(497,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:30:\"2024/02/Untitled-design-21.png\";s:8:\"filesize\";i:2507045;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72669;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Untitled-design-21-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:661770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27346;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:396526;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"Untitled-design-21-1536x1152.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1348395;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101109;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:31:\"Untitled-design-21-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:605522;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114576;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188135;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:31:\"Untitled-design-21-1080x810.png\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:736915;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196904;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:31:\"Untitled-design-21-1280x960.png\";s:5:\"width\";i:1280;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:992057;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-980x735.png\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:619617;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:30:\"Untitled-design-21-480x360.png\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168679;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(498,175,'footnotes',''),(500,177,'footnotes',''),(501,178,'footnotes',''),(502,179,'_edit_lock','1708827258:1'),(503,179,'_et_pb_use_builder','on'),(504,179,'_et_gb_content_width',''),(505,179,'footnotes',''),(506,180,'footnotes',''),(507,179,'_edit_last','1'),(508,179,'_et_pb_post_hide_nav','default'),(509,179,'_et_pb_page_layout','et_right_sidebar'),(510,179,'_et_pb_side_nav','off'),(511,181,'_wp_attached_file','2024/02/header-bg-1.jpg'),(512,181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:887;s:4:\"file\";s:23:\"2024/02/header-bg-1.jpg\";s:8:\"filesize\";i:60875;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"header-bg-1-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15082;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"header-bg-1-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53869;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"header-bg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11818;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"header-bg-1-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37452;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:23:\"header-bg-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19055;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:24:\"header-bg-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58970;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:23:\"header-bg-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20545;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:23:\"header-bg-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27212;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:24:\"header-bg-1-1080x665.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58163;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:23:\"header-bg-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28738;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:24:\"header-bg-1-1280x788.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:788;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72486;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:23:\"header-bg-1-980x604.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:604;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50976;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:23:\"header-bg-1-480x296.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22319;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(513,182,'_wp_attached_file','2024/02/coffee-item-10.jpg'),(514,182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1822;s:6:\"height\";i:1152;s:4:\"file\";s:26:\"2024/02/coffee-item-10.jpg\";s:8:\"filesize\";i:79399;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5078;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"coffee-item-10-1024x647.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:647;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46714;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1372;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-768x486.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26371;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"coffee-item-10-1536x971.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:971;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103153;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7856;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:27:\"coffee-item-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51646;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7639;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11453;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:27:\"coffee-item-10-1080x683.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52392;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8090;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:27:\"coffee-item-10-1280x809.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:809;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73194;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-980x620.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43113;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:26:\"coffee-item-10-480x303.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(515,183,'_wp_attached_file','2024/02/coffee-item-2.png'),(516,183,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:25:\"2024/02/coffee-item-2.png\";s:8:\"filesize\";i:52761;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"coffee-item-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111060;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"coffee-item-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33306;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"coffee-item-2-320x250.png\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108160;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"coffee-item-2-320x284.png\";s:5:\"width\";i:320;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114764;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(517,184,'_wp_attached_file','2024/02/coffee-item-1.png'),(518,184,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:25:\"2024/02/coffee-item-1.png\";s:8:\"filesize\";i:45425;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"coffee-item-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103395;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"coffee-item-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30667;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"coffee-item-1-320x250.png\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94075;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"coffee-item-1-320x284.png\";s:5:\"width\";i:320;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100262;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(519,185,'_wp_attached_file','2024/02/coffee-item-3.png'),(520,185,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:25:\"2024/02/coffee-item-3.png\";s:8:\"filesize\";i:42721;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"coffee-item-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"coffee-item-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29040;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"coffee-item-3-320x250.png\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81929;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"coffee-item-3-320x284.png\";s:5:\"width\";i:320;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88435;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(521,186,'_wp_attached_file','2024/02/section-bg-12.jpg'),(522,186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1176;s:4:\"file\";s:25:\"2024/02/section-bg-12.jpg\";s:8:\"filesize\";i:54015;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"section-bg-12-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4622;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"section-bg-12-1024x627.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31500;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"section-bg-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2573;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"section-bg-12-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19261;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"section-bg-12-1536x941.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:941;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64293;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"section-bg-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7153;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:26:\"section-bg-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35316;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"section-bg-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7971;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"section-bg-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12197;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:26:\"section-bg-12-1080x662.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34496;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"section-bg-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13341;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:26:\"section-bg-12-1280x784.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46732;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:25:\"section-bg-12-980x600.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29220;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"section-bg-12-480x294.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9237;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(523,187,'_wp_attached_file','2024/02/section-bg-9.jpg'),(524,187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:1044;s:4:\"file\";s:24:\"2024/02/section-bg-9.jpg\";s:8:\"filesize\";i:110263;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"section-bg-9-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11643;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"section-bg-9-1024x626.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"section-bg-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5631;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"section-bg-9-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47969;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"section-bg-9-1536x939.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:939;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146593;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:24:\"section-bg-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18045;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"section-bg-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84451;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:24:\"section-bg-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19241;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:24:\"section-bg-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28857;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:25:\"section-bg-9-1080x661.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83113;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:24:\"section-bg-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27635;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:25:\"section-bg-9-1280x783.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109590;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:24:\"section-bg-9-980x599.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:599;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70808;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:24:\"section-bg-9-480x294.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23384;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(525,188,'_wp_attached_file','2024/02/section-bg-10.jpg'),(526,188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1121;s:4:\"file\";s:25:\"2024/02/section-bg-10.jpg\";s:8:\"filesize\";i:37255;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"section-bg-10-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4031;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"section-bg-10-1024x598.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23952;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"section-bg-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2202;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"section-bg-10-768x448.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15282;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"section-bg-10-1536x897.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:897;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44615;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"section-bg-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6423;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:26:\"section-bg-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28064;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"section-bg-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7070;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"section-bg-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10416;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:26:\"section-bg-10-1080x631.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26074;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"section-bg-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8707;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:26:\"section-bg-10-1280x747.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:747;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33742;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:25:\"section-bg-10-980x572.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:572;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22444;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"section-bg-10-480x280.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7781;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(527,189,'_wp_attached_file','2024/02/section-bg-3.jpg'),(528,189,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1220;s:6:\"height\";i:637;s:4:\"file\";s:24:\"2024/02/section-bg-3.jpg\";s:8:\"filesize\";i:17646;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"section-bg-3-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3424;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"section-bg-3-1024x535.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21449;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"section-bg-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2382;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"section-bg-3-768x401.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13930;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:24:\"section-bg-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6325;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"section-bg-3-1080x637.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27201;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:24:\"section-bg-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7276;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:24:\"section-bg-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11010;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:25:\"section-bg-3-1080x564.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23471;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:24:\"section-bg-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11433;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:24:\"section-bg-3-980x512.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19968;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:24:\"section-bg-3-480x251.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(529,190,'_wp_attached_file','2024/02/icon-1.png'),(530,190,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:58;s:6:\"height\";i:58;s:4:\"file\";s:18:\"2024/02/icon-1.png\";s:8:\"filesize\";i:1880;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:{}}}'),(531,191,'_wp_attached_file','2024/02/icon-2.png'),(532,191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:58;s:6:\"height\";i:58;s:4:\"file\";s:18:\"2024/02/icon-2.png\";s:8:\"filesize\";i:987;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:{}}}'),(533,192,'_wp_attached_file','2024/02/icon-3.png'),(534,192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:58;s:6:\"height\";i:58;s:4:\"file\";s:18:\"2024/02/icon-3.png\";s:8:\"filesize\";i:701;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:{}}}'),(535,193,'_wp_attached_file','2024/02/gallery-coffee-image-1.jpg'),(536,193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2024/02/gallery-coffee-image-1.jpg\";s:8:\"filesize\";i:46920;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14365;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4099;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68934;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16942;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69172;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18540;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29372;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30702;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32122;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(537,194,'_wp_attached_file','2024/02/gallery-coffee-image-2-1.jpg'),(538,194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:36:\"2024/02/gallery-coffee-image-2-1.jpg\";s:8:\"filesize\";i:35328;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10581;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3704;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52790;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11427;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52408;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12755;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20625;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22078;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:36:\"gallery-coffee-image-2-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(539,195,'_wp_attached_file','2024/02/gallery-coffee-image-5.jpg'),(540,195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2024/02/gallery-coffee-image-5.jpg\";s:8:\"filesize\";i:40154;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13361;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4624;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58783;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18009;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61357;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19165;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28711;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29304;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:34:\"gallery-coffee-image-5-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28091;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(541,196,'_wp_attached_file','2024/02/section-bg-7.jpg'),(542,196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1220;s:6:\"height\";i:630;s:4:\"file\";s:24:\"2024/02/section-bg-7.jpg\";s:8:\"filesize\";i:41746;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"section-bg-7-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11660;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"section-bg-7-1024x529.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44028;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"section-bg-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10191;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"section-bg-7-768x397.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30188;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:24:\"section-bg-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16783;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"section-bg-7-1080x630.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55727;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:24:\"section-bg-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18372;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:24:\"section-bg-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25487;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:25:\"section-bg-7-1080x558.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:558;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47256;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:24:\"section-bg-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30170;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:24:\"section-bg-7-980x506.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41721;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:24:\"section-bg-7-480x248.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17297;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(543,197,'_wp_attached_file','2024/02/brewery-03.jpg'),(544,197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1003;s:4:\"file\";s:22:\"2024/02/brewery-03.jpg\";s:8:\"filesize\";i:136145;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-03-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8652;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"brewery-03-1024x535.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5139;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"brewery-03-768x401.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36125;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"brewery-03-1536x802.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117590;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15500;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:23:\"brewery-03-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75179;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:22:\"brewery-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17196;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:22:\"brewery-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25832;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:23:\"brewery-03-1080x564.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63126;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:22:\"brewery-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26158;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:23:\"brewery-03-1280x669.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:669;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84832;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:22:\"brewery-03-980x512.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53114;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:22:\"brewery-03-480x251.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(545,198,'_wp_attached_file','2024/02/brewery-07.jpg'),(546,198,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2024/02/brewery-07.jpg\";s:8:\"filesize\";i:31198;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-07-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12485;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6038;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-07-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17465;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:22:\"brewery-07-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19994;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:22:\"brewery-07-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26388;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:22:\"brewery-07-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33908;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(547,199,'_wp_attached_file','2024/02/brewery-08.jpg'),(548,199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2024/02/brewery-08.jpg\";s:8:\"filesize\";i:27127;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-08-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5331;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-08-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19152;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:22:\"brewery-08-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21093;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:22:\"brewery-08-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26477;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:22:\"brewery-08-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(549,200,'_wp_attached_file','2024/02/brewery-11.jpg'),(550,200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:510;s:6:\"height\";i:338;s:4:\"file\";s:22:\"2024/02/brewery-11.jpg\";s:8:\"filesize\";i:35360;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-11-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16101;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7127;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24474;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:22:\"brewery-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27380;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:22:\"brewery-11-400x338.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34136;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:22:\"brewery-11-480x318.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34079;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(551,201,'_wp_attached_file','2024/02/brewery-09.jpg'),(552,201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2024/02/brewery-09.jpg\";s:8:\"filesize\";i:22993;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-09-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8525;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4906;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-09-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17483;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:22:\"brewery-09-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19475;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:22:\"brewery-09-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24668;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:22:\"brewery-09-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27679;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(553,202,'_wp_attached_file','2024/02/brewery-10.jpg'),(554,202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2024/02/brewery-10.jpg\";s:8:\"filesize\";i:24404;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-10-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9613;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4981;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16554;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:22:\"brewery-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18270;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:22:\"brewery-10-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22600;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:22:\"brewery-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27481;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(555,203,'_wp_attached_file','2024/02/Group-16-1.png'),(556,203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:393;s:6:\"height\";i:118;s:4:\"file\";s:22:\"2024/02/Group-16-1.png\";s:8:\"filesize\";i:17025;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Group-16-1-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14211;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Group-16-1-150x118.png\";s:5:\"width\";i:150;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10643;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(557,204,'_wp_attached_file','2024/02/brewery-04.jpg'),(558,204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:270;s:4:\"file\";s:22:\"2024/02/brewery-04.jpg\";s:8:\"filesize\";i:13696;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-04-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5181;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15939;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(559,205,'_wp_attached_file','2024/02/brewery-16.jpg'),(560,205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1024;s:4:\"file\";s:22:\"2024/02/brewery-16.jpg\";s:8:\"filesize\";i:178795;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-16-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10470;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"brewery-16-1024x546.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"brewery-16-768x410.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45840;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"brewery-16-1536x819.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149850;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18848;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:23:\"brewery-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95276;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:22:\"brewery-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20926;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:22:\"brewery-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31642;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:23:\"brewery-16-1080x576.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79462;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:22:\"brewery-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31464;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:23:\"brewery-16-1280x683.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108092;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:22:\"brewery-16-980x523.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68161;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:22:\"brewery-16-480x256.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21733;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(561,206,'_wp_attached_file','2024/02/brewery-17.jpg'),(562,206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:22:\"2024/02/brewery-17.jpg\";s:8:\"filesize\";i:58027;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"brewery-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3718;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"brewery-17-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24994;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"brewery-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1824;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"brewery-17-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15364;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"brewery-17-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51469;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:22:\"brewery-17-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5421;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:23:\"brewery-17-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26309;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:22:\"brewery-17-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6067;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:22:\"brewery-17-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9377;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:23:\"brewery-17-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27289;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:22:\"brewery-17-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8742;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:23:\"brewery-17-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37217;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:22:\"brewery-17-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23137;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:22:\"brewery-17-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(563,207,'_wp_attached_file','2024/02/caption-1.jpg'),(564,207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:1400;s:4:\"file\";s:21:\"2024/02/caption-1.jpg\";s:8:\"filesize\";i:325844;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"caption-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14818;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"caption-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135472;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"caption-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4678;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"caption-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79188;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"caption-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18130;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"caption-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111172;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"caption-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19498;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"caption-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30936;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:23:\"caption-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151178;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"caption-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30475;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:23:\"caption-1-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209417;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:21:\"caption-1-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126340;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"caption-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(565,208,'_wp_attached_file','2024/02/caption-2.jpg'),(566,208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1956;s:4:\"file\";s:21:\"2024/02/caption-2.jpg\";s:8:\"filesize\";i:639544;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"caption-2-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12946;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"caption-2-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146692;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"caption-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7298;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"caption-2-768x1366.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253234;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"caption-2-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:315129;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"caption-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33905;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"caption-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210422;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"caption-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37593;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"caption-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61548;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:23:\"caption-2-1080x1920.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:482914;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"caption-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57753;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:23:\"caption-2-1100x1800.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:545973;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:22:\"caption-2-980x1743.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1743;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:403981;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"caption-2-480x854.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104247;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(567,209,'_wp_attached_file','2024/02/caption-3.jpg'),(568,209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:1956;s:4:\"file\";s:21:\"2024/02/caption-3.jpg\";s:8:\"filesize\";i:618245;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"caption-3-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17012;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"caption-3-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156322;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"caption-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7413;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"caption-3-768x1366.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:257241;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"caption-3-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:315357;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"caption-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28322;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:22:\"caption-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165083;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"caption-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32335;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"caption-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52160;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:23:\"caption-3-1080x1920.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:474148;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"caption-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59160;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:23:\"caption-3-1100x1800.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:519428;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:22:\"caption-3-980x1743.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1743;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:397880;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"caption-3-480x854.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114043;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(569,210,'_wp_attached_file','2024/02/caption.jpg'),(570,210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:1024;s:4:\"file\";s:19:\"2024/02/caption.jpg\";s:8:\"filesize\";i:133995;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"caption-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16392;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"caption-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6762;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:19:\"caption-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21910;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:19:\"caption-768x675.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109253;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:19:\"caption-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25474;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:19:\"caption-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41362;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:19:\"caption-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43002;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:19:\"caption-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(572,179,'_et_pb_built_for_post_type','page'),(573,212,'footnotes',''),(574,179,'_et_pb_ab_subjects',''),(575,179,'_et_pb_enable_shortcode_tracking',''),(576,179,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"179\" /]'),(577,179,'_et_pb_custom_css',''),(578,179,'_et_pb_gutter_width','3'),(579,179,'_thumbnail_id','0'),(580,179,'_global_colors_info','{}'),(581,179,'_et_pb_first_image',''),(582,179,'_et_pb_truncate_post',''),(583,179,'_et_pb_truncate_post_date',''),(584,179,'_et_builder_version','VB|Divi|4.22.0'),(585,179,'_et_pb_show_page_creation','off'),(586,213,'footnotes',''),(587,214,'footnotes',''),(588,215,'footnotes',''),(591,71,'_wp_trash_meta_status','draft'),(592,71,'_wp_trash_meta_time','1708827373'),(593,71,'_wp_desired_post_slug',''),(594,179,'_wp_page_template','default'),(595,216,'footnotes',''),(598,217,'_et_pb_built_for_post_type','page'),(599,218,'_et_pb_built_for_post_type','page'),(600,219,'footnotes',''),(602,220,'_edit_lock','1708832231:1'),(603,220,'_wp_trash_meta_status','publish'),(604,220,'_wp_trash_meta_time','1708832234'),(605,221,'_wp_trash_meta_status','publish'),(606,221,'_wp_trash_meta_time','1708832265'),(607,222,'_wp_trash_meta_status','publish'),(608,222,'_wp_trash_meta_time','1708832282'),(629,224,'footnotes',''),(630,226,'footnotes',''),(635,227,'footnotes',''),(636,228,'footnotes',''),(643,121,'_et_dynamic_cached_shortcodes','a:8:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:8;s:11:\"et_pb_blurb\";i:10;s:12:\"et_pb_button\";i:17;s:13:\"et_pb_divider\";i:30;s:11:\"et_pb_image\";i:49;s:10:\"et_pb_text\";}'),(644,121,'_et_dynamic_cached_attributes','a:131:{s:9:\"font_icon\";a:1:{i:0;s:17:\"&#xf00c;||fa||900\";}s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"36px\";s:18:\"header_2_font_size\";s:3:\"5vw\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"60px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"0px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#666666\";s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:11:\"show_author\";s:3:\"off\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:17:\"header_text_color\";s:7:\"#000000\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";}'),(645,121,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-oswald\";s:34:\"Oswald:200,300,regular,500,600,700\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:74:\"{\"gph\":0,\"divi\":\"4.22.0\",\"wp\":\"6.4.3\",\"enable_all_character_sets\":\"false\"}\";}'),(646,121,'_et_builder_module_features_cache','a:2:{i:0;s:55:\"{\"gph\":0,\"divi\":\"4.22.0\",\"wp\":\"6.4.3\",\"tb\":[],\"wpe\":[]}\";i:1;a:24:{s:46:\"et_pb_section_0c7c28c5ac091dde1f188d498f1dccae\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dd9c6f1d4b69ec78936dcc40045a44e4\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7aca2ce0c38c6ec60a24dac981e43a15\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e90a9de3646a51ef3562e2a9fbf2d062\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8e3ea62a5c602169dc37e3a075169448\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d21146998ea0e02c8d6dcac1f91d20ac\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_8e3ea62a5c602169dc37e3a075169448\";a:4:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_a3a0fe29a485c31ba994b4581b366368\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ceca9774f7cf2e7ce5132ac715afb76c\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e9ad8f9b0402815a7985862eaeb1cff3\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_de40e3abeb70906b4321ef35c73a2590\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_33d1f5e11af4f4c3bf390b41a8a92fb7\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0b8050c71bdf3a7485ba1b520cc7fe15\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_7f08d40bee2af0132913256430ee5f2a\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_5b2f0ed5dcbf515c0116303a95f6b864\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_fde6c8be2c51a60159e7446f32ab1f65\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f5f79d27c6ae94bc33342cfa14b3b60d\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e6bd7d6edaf98467a1cae5ab8881d142\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_a7797c6e836e634f8e8a78bdfdcb20ec\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_2b8d4e316f080c4197941614d7f0d8ce\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_fe5ff3a14f5b8ad9887330b63a03af47\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_fbd599b33887998ad8dc1fed69015fba\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3da01dbe7bdc4cf0d0aa4b90afec198f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4ce023085fafcea8dd0b69c131952e2b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(647,1,'_et_dynamic_cached_shortcodes','a:0:{}'),(648,1,'_et_dynamic_cached_attributes','a:130:{s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"36px\";s:18:\"header_2_font_size\";s:3:\"5vw\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"60px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"0px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#666666\";s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:11:\"show_author\";s:3:\"off\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:17:\"header_text_color\";s:7:\"#000000\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";}'),(649,9,'_et_dynamic_cached_shortcodes','a:9:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:12:\"et_pb_button\";i:5;s:10:\"et_pb_code\";i:6;s:11:\"et_pb_image\";i:7;s:25:\"et_pb_social_media_follow\";i:8;s:10:\"et_pb_text\";}'),(650,9,'_et_dynamic_cached_attributes','a:133:{s:31:\"scroll_horizontal_motion_enable\";a:1:{i:0;s:2:\"on\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:14:\"social_network\";a:3:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";}s:11:\"header_font\";s:17:\"Oswald|700|||||||\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"36px\";s:18:\"header_2_font_size\";s:3:\"5vw\";s:25:\"header_2_font_size_tablet\";s:4:\"32px\";s:24:\"header_2_font_size_phone\";s:4:\"20px\";s:30:\"header_2_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_2_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_2_line_height\";s:5:\"1.2em\";s:18:\"header_6_font_size\";s:4:\"16px\";s:25:\"header_6_font_size_tablet\";s:4:\"15px\";s:24:\"header_6_font_size_phone\";s:4:\"14px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_6_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:14:\"text_font_size\";s:4:\"18px\";s:21:\"text_font_size_tablet\";s:4:\"16px\";s:20:\"text_font_size_phone\";s:4:\"14px\";s:26:\"text_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"text_font\";s:12:\"Lato||||||||\";s:16:\"text_line_height\";s:5:\"1.8em\";s:18:\"header_5_font_size\";s:4:\"20px\";s:25:\"header_5_font_size_tablet\";s:4:\"16px\";s:24:\"header_5_font_size_phone\";s:4:\"14px\";s:30:\"header_5_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_5_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:13:\"header_4_font\";s:19:\"Oswald|700||on|||||\";s:18:\"header_4_font_size\";s:4:\"24px\";s:25:\"header_4_font_size_tablet\";s:4:\"16px\";s:24:\"header_4_font_size_phone\";s:4:\"15px\";s:30:\"header_4_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_4_line_height\";s:5:\"1.8em\";s:18:\"header_3_font_size\";s:4:\"36px\";s:25:\"header_3_font_size_tablet\";s:4:\"20px\";s:24:\"header_3_font_size_phone\";s:4:\"16px\";s:30:\"header_3_font_size_last_edited\";s:10:\"on|desktop\";s:13:\"header_3_font\";s:19:\"Oswald|700||on|||||\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:10:\"icon_color\";s:7:\"#000000\";s:14:\"icon_placement\";s:4:\"left\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"16px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:9:\"body_font\";s:19:\"Oswald|700||on|||||\";s:14:\"body_font_size\";s:4:\"16px\";s:21:\"body_font_size_tablet\";s:4:\"15px\";s:20:\"body_font_size_phone\";s:4:\"14px\";s:26:\"body_font_size_last_edited\";s:10:\"on|desktop\";s:16:\"body_line_height\";s:5:\"1.8em\";s:16:\"image_icon_width\";s:4:\"60px\";s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:24:\"image_icon_custom_margin\";s:18:\"5px||||false|false\";s:27:\"image_icon_background_color\";s:7:\"#000000\";s:18:\"border_radii_image\";s:26:\"on|500px|500px|500px|500px\";s:25:\"image_icon_custom_padding\";s:29:\"10px|10px|10px|10px|true|true\";s:16:\"text_orientation\";s:6:\"center\";s:10:\"_unique_id\";s:36:\"37352547-b97b-4413-85e2-b00056b20234\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:4:\"14px\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#dcff77\";s:19:\"button_border_color\";s:7:\"#000000\";s:20:\"button_border_radius\";s:5:\"100px\";s:21:\"button_letter_spacing\";s:6:\"0.16em\";s:11:\"button_font\";s:19:\"Oswald|700||on|||||\";s:21:\"button_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:23:\"box_shadow_style_button\";s:7:\"preset4\";s:28:\"box_shadow_horizontal_button\";s:3:\"5px\";s:26:\"box_shadow_vertical_button\";s:3:\"5px\";s:22:\"box_shadow_blur_button\";s:3:\"0px\";s:24:\"box_shadow_spread_button\";s:3:\"0px\";s:26:\"box_shadow_position_button\";s:5:\"outer\";s:23:\"box_shadow_color_button\";s:7:\"#acade8\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#000000\";s:25:\"form_field_custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:15:\"form_field_font\";s:19:\"Oswald|700||on|||||\";s:25:\"form_field_letter_spacing\";s:6:\"0.16em\";s:16:\"border_width_all\";s:3:\"0px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:287:\"{\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\":[\"button_bg_color\"],\"gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937\":[\"box_shadow_color\",\"box_shadow_color_button\"],\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\":[\"body_text_color\"],\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\":[\"body_ul_text_color\"]}\";s:16:\"box_shadow_color\";s:7:\"#acade8\";s:11:\"toggle_font\";s:19:\"Oswald|700||on|||||\";s:16:\"toggle_font_size\";s:4:\"20px\";s:23:\"toggle_font_size_tablet\";s:4:\"16px\";s:22:\"toggle_font_size_phone\";s:4:\"14px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:22:\"open_toggle_text_color\";s:7:\"#FFFFFF\";s:17:\"toggle_text_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:7:\"#000000\";s:30:\"closed_toggle_background_color\";s:16:\"rgba(0,0,0,0.04)\";s:15:\"body_text_color\";s:7:\"#666666\";s:14:\"custom_padding\";s:29:\"18px|24px|18px|24px|true|true\";s:16:\"box_shadow_style\";s:7:\"preset4\";s:21:\"box_shadow_horizontal\";s:3:\"5px\";s:19:\"box_shadow_vertical\";s:3:\"5px\";s:15:\"box_shadow_blur\";s:3:\"0px\";s:17:\"box_shadow_spread\";s:3:\"0px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:9:\"fullwidth\";s:3:\"off\";s:9:\"show_more\";s:2:\"on\";s:11:\"show_author\";s:3:\"off\";s:9:\"meta_font\";s:19:\"Oswald|700||on|||||\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:5:\"0.2em\";s:15:\"meta_text_color\";s:7:\"#8c8eff\";s:14:\"read_more_font\";s:19:\"Oswald|700||on|||||\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"read_more_text_color\";s:7:\"#000000\";s:24:\"read_more_letter_spacing\";s:6:\"0.16em\";s:15:\"pagination_font\";s:19:\"Oswald|700||on|||||\";s:20:\"pagination_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#000000\";s:25:\"pagination_letter_spacing\";s:6:\"0.16em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"text_shadow_style\";s:7:\"preset3\";s:29:\"text_shadow_horizontal_length\";s:3:\"0em\";s:27:\"text_shadow_vertical_length\";s:3:\"0em\";s:25:\"text_shadow_blur_strength\";s:5:\"0.3em\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"arrows_custom_color\";s:7:\"#000000\";s:20:\"dot_nav_custom_color\";s:7:\"#000000\";s:17:\"header_text_color\";s:7:\"#000000\";s:12:\"body_ul_type\";s:4:\"none\";s:16:\"body_ul_position\";s:6:\"inside\";s:18:\"body_ul_text_color\";s:7:\"#8c8eff\";}'),(651,9,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:4:{s:12:\"et-gf-oswald\";s:34:\"Oswald:200,300,regular,500,600,700\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:18:\"et-gf-merriweather\";s:69:\"Merriweather:300,300italic,regular,italic,700,700italic,900,900italic\";s:12:\"et-gf-roboto\";s:91:\"Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:74:\"{\"gph\":0,\"divi\":\"4.22.0\",\"wp\":\"6.4.3\",\"enable_all_character_sets\":\"false\"}\";}'),(652,9,'_et_builder_module_features_cache','a:2:{i:0;s:55:\"{\"gph\":0,\"divi\":\"4.22.0\",\"wp\":\"6.4.3\",\"tb\":[],\"wpe\":[]}\";i:1;a:52:{s:46:\"et_pb_section_6786bf2a6f9a3e2e164d205070ffe875\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_93ed4f0e6f2fce8419ab9ba47d7842a7\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d21146998ea0e02c8d6dcac1f91d20ac\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_43f24d9b34d3e5c716b8835b84f0af92\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_dca540ea2d33c81187a666e817c0e187\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_fd352a3075eefbb75e66d36ead1b15ed\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_970863fa6f7c9bddd20d512b831eab1f\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_e6bd7d6edaf98467a1cae5ab8881d142\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6344834f899f590a0c16de30ee89f287\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_92a37d6686e299a4eafc6ae0c72fc12e\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_37b2ace98d9447f853a6aab01ac140e5\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_0450cc9e7e300ebf3cc9572809af4eb0\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7c40eb95b133c1826f4af4fd83624bf7\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_72a893c3c453febd78fc8af376770c03\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_814032db742a37a14824b6fda1454dfc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e35b372c946954135480e6541ee4f237\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_75b88fc5037cad9e4217731eb4a2cca4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_836d0affa6023b6383672c826dec681c\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_878c411d4dcb4faadc42ea97fe741411\";a:7:{s:4:\"scef\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_2a3465e3f6ce9ee07644317055351273\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_277b28397ece3051f6666aecd2da2344\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9ea6aa390b7e92a6ee56c4fa697096eb\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f9ebdb54bb245065ee241675f60213ea\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f63cc538be446c57a475e1a6c01f9822\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_504efca0d42a09f3ac5790d36d053f04\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_b8551ce9b256f362fa192080532f6538\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_32706fc42f00d566dc863cd595d592b9\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_277f799a70517ca9a18c8c063662480a\";a:7:{s:4:\"scef\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_2c62717a5b4f7c5ba5995c8fa79009db\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_83f99357850588741c29145c82ac51b2\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_005d090664c8f559e4adaf4d540de231\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_8a30af60e96f519acb632c6c7f73c260\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_417d5ef1c69cc448aa8e2f0cafb1bad0\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_993c5aae8d7bbb7a6f97ddbff8f2f29e\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_3ee82e0a17f9b0bd30c4c1b3bc5d8ce9\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_c1b0013c1da86199fb58ece329656a2e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7f7f3c7ecb72940a9cc32bea7d78c607\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8e3ea62a5c602169dc37e3a075169448\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_code_8e3ea62a5c602169dc37e3a075169448\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0fac21a26697955db1c4cb28a0a7d5bc\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c23ed4f203402bd487616ed2df673a37\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7ff6e9e49c3a87389cab0c9fa084f6b7\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4b600aa9fd2f2ba8759bd98ecd19071f\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ba8919366cad7101c6155744a499fd66\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c1dbe0ddfb85434a04340675a5c4c159\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b990d178b5a14d8c566a85925e043cbb\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_880a3949df4c1fe062be46bdb34bdefb\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_257c79b6c8312cbb682a9c0f50ac0789\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_02cf1cc2c965ede64cb9db75456ee96b\";a:6:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_19a481589bb144604c7b4baf81856b32\";a:6:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_fb8c9451d29365ac1e130e1898bc8432\";a:6:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_6cfb6af473b270b9e05287ab05215085\";a:6:{s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}');
/*!40000 ALTER TABLE `wp7riu_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_posts`
--

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

--
-- Dumping data for table `wp7riu_posts`
--

LOCK TABLES `wp7riu_posts` WRITE;
/*!40000 ALTER TABLE `wp7riu_posts` DISABLE KEYS */;
INSERT INTO `wp7riu_posts` VALUES (1,1,'2024-02-09 01:35:34','2024-02-09 01:35:34','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2024-02-09 01:35:34','2024-02-09 01:35:34','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=1',0,'post','',1),(2,1,'2024-02-09 01:35:34','2024-02-09 01:35:34','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://hausofskai-wip.com/moanalagooncharters/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2024-02-09 01:35:34','2024-02-09 01:35:34','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=2',0,'page','',0),(3,1,'2024-02-09 01:35:34','2024-02-09 01:35:34','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://hausofskai-wip.com/moanalagooncharters.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2024-02-09 01:35:34','2024-02-09 01:35:34','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=3',0,'page','',0),(4,0,'2024-02-09 01:35:35','2024-02-09 01:35:35','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2024-02-09 01:35:35','2024-02-09 01:35:35','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/09/navigation/',0,'wp_navigation','',0),(7,1,'2024-02-15 19:13:19','2024-02-15 19:13:19','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentyfour','','','2024-02-15 19:13:19','2024-02-15 19:13:19','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/15/wp-global-styles-twentytwentyfour/',0,'wp_global_styles','',0),(9,1,'2024-02-23 06:52:27','2024-02-23 06:52:27','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" width=\"100%\" max_width=\"none\" custom_padding=\"15vw|10%|15vw|10%|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\" header_text_color=\"#000000\" width=\"60%\" custom_margin=\"||10px||false|false\" header_font_size_tablet=\"5vw\" header_font_size_phone=\"5vw\" header_font_size_last_edited=\"off|phone\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">explore the wonders of aitutaki lagoon</span></h1>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png\" title_text=\"12\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Private charters</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>Escape the crowds and immerse yourself in an atmosphere of exclusivity. With a private vessel at your disposal, you have the freedom to explore the p\'Lagoon at your own pace, away from the hustle and bustle of larger tour groups.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Water Taxi </h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>Whether you\'re embarking on a day of adventure or simply need to reach your destination quickly and efficiently, our Water Taxi service offers unparalleled convenience. With multiple pickup and drop-off locations available, we ensure seamless connectivity to your desired destinations.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>lagoon tours</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>At Mona Lagoon Cruise, we\'re committed to preserving the natural beauty and ecological integrity of our Lagoon. Our Lagoon Tours prioritize responsible tourism practices, ensuring minimal impact on the environment while maximizing your enjoyment of this pristine paradise.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#000000\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" title_text=\"图像 (8)\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>swim with giant trevally</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>lagoon tours</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688633442222.jpg\" title_text=\"FB_IMG_1688633442222\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"643px\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>explore picturesque motus</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>Private charter</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" background_position=\"top_right\" background_vertical_offset=\"65%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"图像 (8)\" background_horizontal_offset=\"-12%\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>&nbsp;</p>\n<p>Dan &amp; Lo, Proud Aitutaki Locals started Mona\'s Lagoon Tours. Having grown up in and on the lagoon and working for tourism operators, it only made sense to dive into a business which incorporates their love for their homeland and being able to deliver incredible customer service for visitors. </p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_text=\"about us\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" hover_enabled=\"0\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_enable_color=\"off\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][trustindex no-registration=tripadvisor][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2024-02-25 03:34:31','2024-02-25 03:34:31','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=9',0,'page','',0),(10,1,'2024-02-15 19:17:31','2024-02-15 19:17:31','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-divi','','','2024-02-15 19:17:31','2024-02-15 19:17:31','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/15/wp-global-styles-divi/',0,'wp_global_styles','',0),(11,1,'2024-02-15 19:17:35','2024-02-15 19:17:35','<!-- wp:divi/placeholder /-->','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-15 19:17:35','2024-02-15 19:17:35','',9,'https://hausofskai-wip.com/moanalagooncharters/?p=11',0,'revision','',0),(12,1,'2024-02-15 19:20:54','2024-02-15 19:20:54','','bftb_header_02.png','','inherit','open','closed','','bftb_header_02-png','','','2024-02-15 19:20:54','2024-02-15 19:20:54','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/bftb_header_02.png.png',0,'attachment','image/png',0),(13,1,'2024-02-15 19:20:54','2024-02-15 19:20:54','','device-repair-20','','inherit','open','closed','','device-repair-20','','','2024-02-15 19:20:54','2024-02-15 19:20:54','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-20.jpg',0,'attachment','image/jpeg',0),(14,1,'2024-02-15 19:20:56','2024-02-15 19:20:56','','device-repair-icon-5b','','inherit','open','closed','','device-repair-icon-5b','','','2024-02-15 19:20:56','2024-02-15 19:20:56','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-icon-5b.png',0,'attachment','image/png',0),(15,1,'2024-02-15 19:20:56','2024-02-15 19:20:56','','device-repair-icon-6b','','inherit','open','closed','','device-repair-icon-6b','','','2024-02-15 19:20:56','2024-02-15 19:20:56','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-icon-6b.png',0,'attachment','image/png',0),(16,1,'2024-02-15 19:20:56','2024-02-15 19:20:56','','device-repair-icon-7b','','inherit','open','closed','','device-repair-icon-7b','','','2024-02-15 19:20:56','2024-02-15 19:20:56','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-icon-7b.png',0,'attachment','image/png',0),(17,1,'2024-02-15 19:21:09','2024-02-15 19:21:09','','cracked-screen-bg-lowres','','inherit','open','closed','','cracked-screen-bg-lowres','','','2024-02-15 19:21:09','2024-02-15 19:21:09','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/cracked-screen-bg-lowres.jpg',0,'attachment','image/jpeg',0),(18,1,'2024-02-15 19:21:11','2024-02-15 19:21:11','','cracked-phone-white','','inherit','open','closed','','cracked-phone-white','','','2024-02-15 19:21:11','2024-02-15 19:21:11','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/cracked-phone-white.png',0,'attachment','image/png',0),(19,1,'2024-02-15 19:21:14','2024-02-15 19:21:14','','device-repair-1b','','inherit','open','closed','','device-repair-1b','','','2024-02-15 19:21:14','2024-02-15 19:21:14','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-1b.png',0,'attachment','image/png',0),(20,1,'2024-02-15 19:21:14','2024-02-15 19:21:14','','device-repair-9','','inherit','open','closed','','device-repair-9','','','2024-02-15 19:21:14','2024-02-15 19:21:14','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-9.jpg',0,'attachment','image/jpeg',0),(21,1,'2024-02-15 19:21:14','2024-02-15 19:21:14','','cracked-phone','','inherit','open','closed','','cracked-phone','','','2024-02-15 19:21:14','2024-02-15 19:21:14','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/cracked-phone.png',0,'attachment','image/png',0),(22,1,'2024-02-15 19:21:26','2024-02-15 19:21:26','','device-repair-icon-3b','','inherit','open','closed','','device-repair-icon-3b','','','2024-02-15 19:21:26','2024-02-15 19:21:26','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-icon-3b.png',0,'attachment','image/png',0),(23,1,'2024-02-15 19:21:26','2024-02-15 19:21:26','','device-repair-5b','','inherit','open','closed','','device-repair-5b','','','2024-02-15 19:21:26','2024-02-15 19:21:26','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-5b.jpg',0,'attachment','image/jpeg',0),(24,1,'2024-02-15 19:21:26','2024-02-15 19:21:26','','device-repair-6','','inherit','open','closed','','device-repair-6','','','2024-02-15 19:21:26','2024-02-15 19:21:26','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-6.jpg',0,'attachment','image/jpeg',0),(25,1,'2024-02-15 19:21:27','2024-02-15 19:21:27','','device-repair-mask-01','','inherit','open','closed','','device-repair-mask-01','','','2024-02-15 19:21:27','2024-02-15 19:21:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-mask-01.png',0,'attachment','image/png',0),(26,1,'2024-02-15 19:21:28','2024-02-15 19:21:28','','device-repair-22','','inherit','open','closed','','device-repair-22','','','2024-02-15 19:21:28','2024-02-15 19:21:28','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-22.jpg',0,'attachment','image/jpeg',0),(27,1,'2024-02-15 19:21:37','2024-02-15 19:21:37','','device-repair-25','','inherit','open','closed','','device-repair-25','','','2024-02-15 19:21:37','2024-02-15 19:21:37','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-25.jpg',0,'attachment','image/jpeg',0),(28,1,'2024-02-15 19:21:38','2024-02-15 19:21:38','','device-repair-24','','inherit','open','closed','','device-repair-24','','','2024-02-15 19:21:38','2024-02-15 19:21:38','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-24.jpg',0,'attachment','image/jpeg',0),(29,1,'2024-02-15 19:21:38','2024-02-15 19:21:38','','device-repair-8','','inherit','open','closed','','device-repair-8','','','2024-02-15 19:21:38','2024-02-15 19:21:38','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-8.jpg',0,'attachment','image/jpeg',0),(30,1,'2024-02-15 19:21:40','2024-02-15 19:21:40','','device-repair-16','','inherit','open','closed','','device-repair-16','','','2024-02-15 19:21:40','2024-02-15 19:21:40','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/device-repair-16.jpg',0,'attachment','image/jpeg',0),(31,1,'2024-02-23 20:59:40','2024-02-23 20:59:40','<!-- wp:divi/placeholder /-->','Home','','trash','closed','closed','','__trashed-3','','','2024-02-23 20:59:40','2024-02-23 20:59:40','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=31',0,'page','',0),(32,1,'2024-02-17 18:05:33','2024-02-17 18:05:33','<!-- wp:divi/placeholder /-->','Home','','inherit','closed','closed','','31-revision-v1','','','2024-02-17 18:05:33','2024-02-17 18:05:33','',31,'https://hausofskai-wip.com/moanalagooncharters/?p=32',0,'revision','',0),(34,1,'2024-02-17 18:09:47','2024-02-17 18:09:47','','FB_IMG_1688632594213','','inherit','open','closed','','fb_img_1688632594213','','','2024-02-17 18:09:47','2024-02-17 18:09:47','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632594213.jpg',0,'attachment','image/jpeg',0),(35,1,'2024-02-17 18:09:49','2024-02-17 18:09:49','','FB_IMG_1688632609808','','inherit','open','closed','','fb_img_1688632609808','','','2024-02-17 18:09:49','2024-02-17 18:09:49','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632609808.jpg',0,'attachment','image/jpeg',0),(36,1,'2024-02-17 18:09:51','2024-02-17 18:09:51','','FB_IMG_1688633442222','','inherit','open','closed','','fb_img_1688633442222','','','2024-02-17 18:09:51','2024-02-17 18:09:51','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688633442222.jpg',0,'attachment','image/jpeg',0),(37,1,'2024-02-17 18:09:54','2024-02-17 18:09:54','','FB_IMG_1696592572670','','inherit','open','closed','','fb_img_1696592572670','','','2024-02-17 18:09:54','2024-02-17 18:09:54','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592572670.jpg',0,'attachment','image/jpeg',0),(38,1,'2024-02-17 18:09:57','2024-02-17 18:09:57','','FB_IMG_1696592594391','','inherit','open','closed','','fb_img_1696592594391','','','2024-02-17 18:09:57','2024-02-17 18:09:57','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592594391.jpg',0,'attachment','image/jpeg',0),(39,1,'2024-02-17 18:09:59','2024-02-17 18:09:59','','FB_IMG_1696592608347','','inherit','open','closed','','fb_img_1696592608347','','','2024-02-17 18:09:59','2024-02-17 18:09:59','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg',0,'attachment','image/jpeg',0),(40,1,'2024-02-17 18:10:13','2024-02-17 18:10:13','','IMG_2670','','inherit','open','closed','','img_2670','','','2024-02-17 18:10:13','2024-02-17 18:10:13','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670.jpeg',0,'attachment','image/jpeg',0),(41,1,'2024-02-17 18:10:38','2024-02-17 18:10:38','','IMG_3593','','inherit','open','closed','','img_3593','','','2024-02-17 18:10:38','2024-02-17 18:10:38','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593.jpeg',0,'attachment','image/jpeg',0),(42,1,'2024-02-17 18:10:43','2024-02-17 18:10:43','','IMG_20230705_224104_892','','inherit','open','closed','','img_20230705_224104_892','','','2024-02-17 18:10:43','2024-02-17 18:10:43','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230705_224104_892.webp',0,'attachment','image/webp',0),(43,1,'2024-02-17 18:10:47','2024-02-17 18:10:47','','IMG_20230705_224104_962','','inherit','open','closed','','img_20230705_224104_962','','','2024-02-17 18:10:47','2024-02-17 18:10:47','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230705_224104_962.webp',0,'attachment','image/webp',0),(44,1,'2024-02-17 18:10:49','2024-02-17 18:10:49','','IMG_20230710_121138_491','','inherit','open','closed','','img_20230710_121138_491','','','2024-02-17 18:10:49','2024-02-17 18:10:49','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_121138_491.jpg',0,'attachment','image/jpeg',0),(45,1,'2024-02-17 18:10:51','2024-02-17 18:10:51','','IMG_20230710_122318_249','','inherit','open','closed','','img_20230710_122318_249','','','2024-02-17 18:10:51','2024-02-17 18:10:51','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg',0,'attachment','image/jpeg',0),(46,1,'2024-02-17 18:10:56','2024-02-17 18:10:56','','图像 (4)','','inherit','open','closed','','%e5%9b%be%e5%83%8f-4','','','2024-02-17 18:10:56','2024-02-17 18:10:56','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-4.jpeg',0,'attachment','image/jpeg',0),(47,1,'2024-02-17 18:11:06','2024-02-17 18:11:06','','图像 (5)','','inherit','open','closed','','%e5%9b%be%e5%83%8f-5','','','2024-02-17 18:11:06','2024-02-17 18:11:06','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-5.jpeg',0,'attachment','image/jpeg',0),(48,1,'2024-02-17 18:11:15','2024-02-17 18:11:15','','图像 (6)','','inherit','open','closed','','%e5%9b%be%e5%83%8f-6','','','2024-02-17 18:11:15','2024-02-17 18:11:15','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg',0,'attachment','image/jpeg',0),(49,1,'2024-02-17 18:11:25','2024-02-17 18:11:25','','图像 (8)','','inherit','open','closed','','%e5%9b%be%e5%83%8f-8','','','2024-02-17 18:11:25','2024-02-17 18:11:25','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg',0,'attachment','image/jpeg',0),(50,1,'2024-02-17 22:28:15','2024-02-17 22:28:15','','370086272_2386337848225386_5064394146587414344_n','','inherit','open','closed','','370086272_2386337848225386_5064394146587414344_n','','','2024-02-17 22:28:15','2024-02-17 22:28:15','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/370086272_2386337848225386_5064394146587414344_n.jpg',0,'attachment','image/jpeg',0),(51,1,'2024-02-23 06:19:27','2024-02-23 06:19:27','','fitness-trainer-icon-white-padding-05@2x','','inherit','open','closed','','fitness-trainer-icon-white-padding-052x','','','2024-02-23 06:19:27','2024-02-23 06:19:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-white-padding-05@2x.png',0,'attachment','image/png',0),(52,1,'2024-02-23 06:19:27','2024-02-23 06:19:27','','fitness-trainer-icon-white-padding-06@2x','','inherit','open','closed','','fitness-trainer-icon-white-padding-062x','','','2024-02-23 06:19:27','2024-02-23 06:19:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-white-padding-06@2x.png',0,'attachment','image/png',0),(53,1,'2024-02-23 06:19:27','2024-02-23 06:19:27','','fitness-trainer-icon-white-padding-04@2x','','inherit','open','closed','','fitness-trainer-icon-white-padding-042x','','','2024-02-23 06:19:27','2024-02-23 06:19:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-white-padding-04@2x.png',0,'attachment','image/png',0),(54,1,'2024-02-23 06:19:27','2024-02-23 06:19:27','','portrait-square-11','','inherit','open','closed','','portrait-square-11','','','2024-02-23 06:19:27','2024-02-23 06:19:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/portrait-square-11.jpg',0,'attachment','image/jpeg',0),(55,1,'2024-02-23 06:19:27','2024-02-23 06:19:27','','portrait-square-05','','inherit','open','closed','','portrait-square-05','','','2024-02-23 06:19:27','2024-02-23 06:19:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/portrait-square-05.jpg',0,'attachment','image/jpeg',0),(56,1,'2024-02-23 06:19:52','2024-02-23 06:19:52','','personal-trainer-2','','inherit','open','closed','','personal-trainer-2','','','2024-02-23 06:19:52','2024-02-23 06:19:52','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-2.jpg',0,'attachment','image/jpeg',0),(57,1,'2024-02-23 06:19:52','2024-02-23 06:19:52','','personal-trainer-1','','inherit','open','closed','','personal-trainer-1','','','2024-02-23 06:19:52','2024-02-23 06:19:52','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-1.jpg',0,'attachment','image/jpeg',0),(58,1,'2024-02-23 06:19:54','2024-02-23 06:19:54','','test2','','inherit','open','closed','','test2','','','2024-02-23 06:19:54','2024-02-23 06:19:54','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/test2.png',0,'attachment','image/png',0),(59,1,'2024-02-23 06:20:01','2024-02-23 06:20:01','','personal-trainer-3','','inherit','open','closed','','personal-trainer-3','','','2024-02-23 06:20:01','2024-02-23 06:20:01','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-3.jpg',0,'attachment','image/jpeg',0),(60,1,'2024-02-23 06:20:02','2024-02-23 06:20:02','','personal-trainer-4','','inherit','open','closed','','personal-trainer-4','','','2024-02-23 06:20:02','2024-02-23 06:20:02','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-4.jpg',0,'attachment','image/jpeg',0),(61,1,'2024-02-23 06:20:21','2024-02-23 06:20:21','','personal-trainer-5c','','inherit','open','closed','','personal-trainer-5c','','','2024-02-23 06:20:21','2024-02-23 06:20:21','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-5c.jpg',0,'attachment','image/jpeg',0),(62,1,'2024-02-23 06:20:23','2024-02-23 06:20:23','','fitness-trainer-background-01@2x','','inherit','open','closed','','fitness-trainer-background-012x','','','2024-02-23 06:20:23','2024-02-23 06:20:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-background-01@2x.png',0,'attachment','image/png',0),(64,1,'2024-02-23 06:39:17','2024-02-23 06:39:17','','10','','inherit','open','closed','','10','','','2024-02-23 06:39:17','2024-02-23 06:39:17','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/10.png',0,'attachment','image/png',0),(65,1,'2024-02-23 06:39:18','2024-02-23 06:39:18','','11','','inherit','open','closed','','11','','','2024-02-23 06:39:18','2024-02-23 06:39:18','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png',0,'attachment','image/png',0),(66,1,'2024-02-23 06:39:19','2024-02-23 06:39:19','','12','','inherit','open','closed','','12','','','2024-02-23 06:39:19','2024-02-23 06:39:19','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png',0,'attachment','image/png',0),(67,1,'2024-02-23 06:52:27','2024-02-23 06:52:27','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"IMG_3593\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"15vw|10%|15vw|10%|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\" background_enable_image=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\" header_text_color=\"#000000\" width=\"60%\" custom_margin=\"||10px||false|false\" header_font_size_tablet=\"5vw\" header_font_size_phone=\"5vw\" header_font_size_last_edited=\"off|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1><span style=\"color: #ffffff;\">explore the wonders of aitutaki lagoon</span></h1>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"3_4,1_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.0\" _module_preset=\"default\" max_width=\"840px\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670-scaled.jpeg\" title_text=\"IMG_2670\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"||-50%||false|false\" custom_margin_tablet=\"||0%||false|false\" custom_margin_phone=\"||0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.0\" _module_preset=\"default\" max_width=\"840px\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#000000\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Kia Orana </h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h6>welcome to Monas Lagoon Charters</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed finibus nisi, sed dictum eros. Ac feugiat ante. Donec ultricies lobortis eros, nec auctor nisl semper ultricies. Aliquam sodales nulla dolor.[/et_pb_text][et_pb_button button_text=\"Get In Touch\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" button_bg_color=\"#000000\" button_text_color=\"#EDF000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"12\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Private charters</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed finibus nisi, sed dictum eros.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"11\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" align=\"center\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Water Taxi </h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Quisque aliquet velit sit amet sem interdum faucibus. In feugiat aliquet mollis etiam tincidunt ligula.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"11\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" align=\"center\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>lagoon tours</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Luctus lectus non quisque turpis bibendum posuere. Morbi tortor nibh, fringilla sed pretium sit amet.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" title_text=\"图像 (8)\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>swim with giant trevally</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h6>lagoon tours</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Programs\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_color=\"#000000\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"672cc016-07a8-4fcc-b509-20b09fd79843\" header_2_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" custom_padding=\"|0px||0px|false|true\" border_color_all=\"rgba(255,255,255,0.24)\" border_width_top=\"1px\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" background_pattern_style__hover=\"honeycomb\" background_enable_pattern_style__hover=\"on\" background_pattern_color__hover=\"rgba(255,255,255,0.12)\" background_pattern_size__hover=\"custom\" background_pattern_width__hover=\"56px\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2><span style=\"color: #edf000;\">Personal Training</span></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed finibus nisi, sed dictum eros. Quisque aliquet velit sit amet sem interdum faucibus. In feugiat aliquet mollis etiam tincidunt ligula.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_icon font_icon=\"&#x24;||divi||400\" icon_color=\"#FFFFFF\" icon_width=\"48px\" url=\"#\" align=\"right\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" icon_color__hover_enabled=\"on|hover\" icon_color__hover=\"#DCFF77\" transform_styles__hover_enabled=\"on|hover\" transform_scale__hover_enabled=\"on|hover\" transform_translate__hover_enabled=\"on|hover\" transform_rotate__hover_enabled=\"on|hover\" transform_skew__hover_enabled=\"on|hover\" transform_origin__hover_enabled=\"on|hover\" transform_scale__hover=\"122%|122%\" theme_builder_area=\"post_content\"][/et_pb_icon][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"|0px||0px|false|true\" border_color_all=\"rgba(255,255,255,0.24)\" border_width_top=\"1px\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" background_enable_pattern_style__hover=\"on\" background_pattern_style__hover=\"honeycomb\" background_pattern_color__hover=\"rgba(255,255,255,0.12)\" background_pattern_size__hover=\"custom\" background_pattern_width__hover=\"56px\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\" theme_builder_area=\"post_content\"]<h2><span style=\"color: #edf000;\">Online Training</span></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Luctus lectus non quisque turpis bibendum posuere. Morbi tortor nibh, fringilla sed pretium sit amet. Curabitur non bibendum ligula.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_icon font_icon=\"&#x24;||divi||400\" icon_color=\"#FFFFFF\" icon_width=\"48px\" url=\"#\" align=\"right\" _builder_version=\"4.23.2\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" icon_color__hover_enabled=\"on|hover\" icon_color__hover=\"#DCFF77\" transform_styles__hover_enabled=\"on|hover\" transform_scale__hover_enabled=\"on|hover\" transform_translate__hover_enabled=\"on|hover\" transform_rotate__hover_enabled=\"on|hover\" transform_skew__hover_enabled=\"on|hover\" transform_origin__hover_enabled=\"on|hover\" transform_scale__hover=\"122%|122%\" theme_builder_area=\"post_content\"][/et_pb_icon][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"|0px||0px|false|true\" border_color_all=\"rgba(255,255,255,0.24)\" border_width_top=\"1px\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" background_enable_pattern_style__hover=\"on\" background_pattern_style__hover=\"honeycomb\" background_pattern_color__hover=\"rgba(255,255,255,0.12)\" background_pattern_size__hover=\"custom\" background_pattern_width__hover=\"56px\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\" theme_builder_area=\"post_content\"]<h2><span style=\"color: #edf000;\">Mindset Coaching</span></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]In non pulvinar purus. Curabitur nisi odio, blandit et elit at, suscipit pharetra efficitur elit. Etiam quis blandit erat donec laoreet libero non metus. Lorem ipsum dolor sit amet.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_icon font_icon=\"&#x24;||divi||400\" icon_color=\"#FFFFFF\" icon_width=\"48px\" url=\"#\" align=\"right\" _builder_version=\"4.23.2\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" icon_color__hover_enabled=\"on|hover\" icon_color__hover=\"#DCFF77\" transform_styles__hover_enabled=\"on|hover\" transform_scale__hover_enabled=\"on|hover\" transform_translate__hover_enabled=\"on|hover\" transform_rotate__hover_enabled=\"on|hover\" transform_skew__hover_enabled=\"on|hover\" transform_origin__hover_enabled=\"on|hover\" transform_scale__hover=\"122%|122%\" theme_builder_area=\"post_content\"][/et_pb_icon][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" max_width=\"1280px\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_video src=\"https://www.youtube.com/watch?v=FkQuawiGWUw\" image_src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-4.jpg\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonials\" _builder_version=\"4.22.1\" _module_preset=\"default\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>What My CLients Are Saying</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"f8bd34ae-4b6d-489d-b54e-b24bf7e3a373\" header_5_text_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22header_5_text_color%22%93}\" theme_builder_area=\"post_content\"]<h5>★★★★★</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>\"Nisl massa, ultrices vitae ornare sit amet, ultricies eget orci. Sed vitae nulla et justo pellentesque congue nec eu risus. Fermentum nulla non justo aliquet, quis vehicula quam consequat duis ut hendrerit.\"</h4>[/et_pb_text][et_pb_blurb title=\"Angela Charlton\" image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/portrait-square-11.jpg\" _builder_version=\"4.23.2\" _module_preset=\"2dcac598-5e3d-464b-980e-ae21cae0e261\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Athlete</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"f8bd34ae-4b6d-489d-b54e-b24bf7e3a373\" header_5_text_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22header_5_text_color%22%93}\" theme_builder_area=\"post_content\"]<h5>★★★★★</h5>[/et_pb_text][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>\"In non pulvinar purus. Curabitur nisi odio, blandit et elit at, suscipit pharetra efficitur elit. Etiam quis blandit erat donec laoreet libero non metus.\"</h4>[/et_pb_text][et_pb_blurb title=\"Saif Guerra\" image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/portrait-square-05.jpg\" _builder_version=\"4.22.1\" _module_preset=\"2dcac598-5e3d-464b-980e-ae21cae0e261\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Runner</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592608347\" background_position=\"top_center\" sticky_enabled=\"0\" background_vertical_offset=\"22%\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" parallax=\"on\" width=\"100%\" max_width=\"none\" custom_padding=\"15%|10%|10%|10%|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" background_enable_image=\"off\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#000000\" text_orientation=\"right\" width=\"60%\" module_alignment=\"right\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>explore aitutaki lagoon</h2>[/et_pb_text][et_pb_button button_text=\"Get Started\" button_alignment=\"right\" _builder_version=\"4.22.1\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-23 06:52:27','2024-02-23 06:52:27','',9,'https://hausofskai-wip.com/moanalagooncharters/?p=67',0,'revision','',0),(68,1,'2024-02-23 06:58:25','2024-02-23 06:58:25','','Divi','','publish','closed','closed','','divi','','','2024-02-23 06:58:25','2024-02-23 06:58:25','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/23/divi/',0,'custom_css','',0),(69,1,'2024-02-23 06:58:25','2024-02-23 06:58:25','','Divi','','inherit','closed','closed','','68-revision-v1','','','2024-02-23 06:58:25','2024-02-23 06:58:25','',68,'https://hausofskai-wip.com/moanalagooncharters/?p=69',0,'revision','',0),(70,1,'2024-02-23 07:00:25','2024-02-23 07:00:25','{\n    \"et_divi[header_style]\": {\n        \"value\": \"left\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    },\n    \"et_divi[nav_fullwidth]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    },\n    \"et_divi[menu_height]\": {\n        \"value\": \"101\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    },\n    \"et_divi[menu_link]\": {\n        \"value\": \"rgba(255,255,255,0.6)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    },\n    \"et_divi[menu_link_active]\": {\n        \"value\": \"#0c71c3\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    },\n    \"et_divi[primary_nav_bg]\": {\n        \"value\": \"#000000\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    },\n    \"et_divi[primary_nav_dropdown_line_color]\": {\n        \"value\": \"#0c71c3\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    },\n    \"et_divi[footer_widget_text_color]\": {\n        \"value\": \"#ffffff\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    },\n    \"et_divi[footer_widget_link_color]\": {\n        \"value\": \"#ffffff\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-23 07:00:22\"\n    }\n}','','','trash','closed','closed','','79ab82f3-eccb-47ad-a3ca-e14c2d1b144b','','','2024-02-23 07:00:25','2024-02-23 07:00:25','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=70',0,'customize_changeset','',0),(71,1,'2024-02-25 02:16:13','2024-02-25 02:16:13','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" admin_label=\"Header\" _builder_version=\"4.16\" background_color=\"#242e42\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-49.png\" background_size=\"contain\" background_position=\"bottom_center\" custom_padding=\"||225px|||\" custom_padding_tablet=\"0px||5vw\" custom_padding_phone=\"\" box_shadow_vertical_tablet=\"\" box_shadow_vertical_phone=\"\" box_shadow_vertical_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" module_alignment=\"center\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Lato||||||||\" text_font_size=\"22px\" text_line_height=\"1.8em\" header_font=\"PT Serif|700|||||||\" header_font_size=\"80px\" header_line_height=\"1.2em\" background_layout=\"dark\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"60px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1>Destinations</h1>[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"5px\" _builder_version=\"4.16\" max_width=\"100px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Events\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-62.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>4 hrs, $85/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Waterfall Walk</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Surfing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-59.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>4 hrs, $85/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Whale Watching</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Boating\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-54.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Helicopter Tour</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Flying\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-57.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Beach Day</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Relaxing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-56.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Surfing Lessons</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Surfing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-61.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Nature Hike</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Hiking\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-53.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Downtown San Francisco</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Walking\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-58.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Island Hopping</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Flying\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-60.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Cliff Diving</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Extreme Sports\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"#242e42 0%|rgba(36,46,66,0.8) 61%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"#242e42\" background_color_gradient_end=\"rgba(36,46,66,0.8)\" background_color_gradient_end_position=\"61%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-41.jpg\" background_position=\"bottom_center\" custom_padding=\"||0px|||\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" z_index=\"1\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"PT Serif||||||||\" text_font_size=\"28px\" text_line_height=\"1.8em\" background_layout=\"dark\" custom_margin=\"|||||\" custom_margin_phone=\"|||0vw\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Morbi Nec Tincidu</p>[/et_pb_text][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" min_height=\"550px\" min_height_tablet=\"100px\" min_height_phone=\"\" min_height_last_edited=\"on|desktop\" border_width_all=\"40px\" border_color_all=\"#ffc600\" border_width_all_tablet=\"\" border_width_all_phone=\"3px\" border_width_all_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_blur=\"33px\" box_shadow_spread=\"22px\" box_shadow_color=\"#242e42\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"160px|||\" custom_padding_tablet=\"0px||\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\" custom_padding_phone=\"0px||\"][et_pb_text _builder_version=\"4.16\" header_font=\"||||||||\" header_2_font=\"PT Serif|700|||||||\" header_2_font_size=\"120px\" background_layout=\"dark\" custom_margin=\"|||-400px\" custom_margin_tablet=\"-130px|||0px\" custom_margin_phone=\"-50px||\" custom_margin_last_edited=\"on|tablet\" header_2_font_size_tablet=\"80px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_text_shadow_style=\"preset1\" header_2_text_shadow_color=\"rgba(36,46,66,0.39)\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Feature Excursion</h2>[/et_pb_text][et_pb_blurb title=\"Lorem ipsum dolor sit amea\" use_icon=\"on\" font_icon=\"&#x52;||divi||400\" icon_color=\"#93adcf\" icon_placement=\"left\" image_icon_width=\"26px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" background_layout=\"dark\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"26px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Consectetur adipiscing elit\" use_icon=\"on\" font_icon=\"&#x52;||divi||400\" icon_color=\"#93adcf\" icon_placement=\"left\" image_icon_width=\"26px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" background_layout=\"dark\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"26px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Nunc sollicitudin nibh\" use_icon=\"on\" font_icon=\"&#x52;||divi||400\" icon_color=\"#93adcf\" icon_placement=\"left\" image_icon_width=\"26px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" background_layout=\"dark\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"26px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Pharetra lectus iaculis ac\" use_icon=\"on\" font_icon=\"&#x52;||divi||400\" icon_color=\"#93adcf\" icon_placement=\"left\" image_icon_width=\"26px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" background_layout=\"dark\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"26px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"Book a Trip\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_margin=\"40px||\" custom_padding=\"15px|40px|15px|40px|true|true\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" z_index=\"0\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||1px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-49.png\" force_fullwidth=\"on\" _builder_version=\"4.16\" custom_margin=\"-14vw||-1px||false\" custom_margin_tablet=\"0vw|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Promo\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"PT Serif|700|||||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"||15px\" header_2_font_size_tablet=\"42px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Private Group Tours &amp; Bundles</h2>[/et_pb_text][et_pb_divider color=\"#000000\" divider_weight=\"5px\" _builder_version=\"4.16\" width=\"150px\" module_alignment=\"center\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][et_pb_text _builder_version=\"4.16\" text_font=\"Lato||||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Lato|900|||||||\" header_3_font_size=\"26px\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" text_orientation=\"justify\" max_width=\"800px\" module_alignment=\"center\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"-200px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"50px|40px|50px|40px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"30px|20px|30px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|desktop\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|desktop\" custom_css_main_element=\"position: relative;\" box_shadow_style=\"preset3\" box_shadow_blur=\"100px\" box_shadow_color=\"rgba(0,0,0,0.12)\" text_text_align=\"justify\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Morbi nec tincidunt nunc, nec dignissim libero. Nulla sagittis eget tellus eu finibus.</h3>\n<p>Morbi nec tincidunt nunc, nec dignissim libero. Nulla sagittis eget tellus eu finibus. Vivamus eget augue suscipit, sollicitudin eros ut, accumsan erat. Nunc varius sagittis lectus et euismod. Aenean et nisi vehicula, laoreet lectus vel, accumsan neque. Proin vitae semper lectus, Morbi nec tincidunt nunc, nec dignissim libero. Nulla sagittis eget tellus eu finibus. Vivamus eget augue suscipit, sollicitudin eros ut, accumsan erat. Nunc varius sagittis lectus et euismod. Aenean et nisi vehicula, laoreet lectus vel, accumsan neque. Proin vitae semper lectus, Morbi nec tincidunt nunc, nec dignissim libero. Nulla sagittis eget tellus eu </p>[/et_pb_text][et_pb_button button_text=\"Talk With A Guide\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_margin=\"40px||\" custom_padding=\"15px|40px|15px|40px|true|true\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#ffffff 0%|rgba(36,46,66,0) 75%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(36,46,66,0)\" background_color_gradient_end_position=\"75%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-51.jpg\" custom_padding=\"||20vw\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"PT Serif|700|||||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"||15px\" header_2_font_size_tablet=\"42px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2> Subscribe for Weekly Deals</h2>[/et_pb_text][et_pb_signup mailchimp_list=\"elegantthemestest|1ea2bbd026\" layout=\"top_bottom\" first_name_field=\"off\" last_name_field=\"off\" _builder_version=\"4.16\" form_field_background_color=\"rgba(36,46,66,0.05)\" form_field_font=\"||||||||\" use_background_color=\"off\" custom_button=\"on\" button_text_size=\"14px\" button_bg_color=\"#ff3314\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" max_width=\"600px\" module_alignment=\"center\" custom_padding=\"0px|||||\" border_radii_fields=\"on|0px|0px|0px|0px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_signup][et_pb_social_media_follow icon_color=\"#2a2a2a\" _builder_version=\"4.16\" text_orientation=\"center\" border_radii=\"on|50px|50px|50px|50px\" border_width_all=\"10px\" border_color_all=\"rgba(0,0,0,0)\" global_colors_info=\"{}\" icon_color__hover=\"#000000\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" icon_color=\"#2a2a2a\" _builder_version=\"4.16\" background_color=\"#ffffff\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" icon_color=\"#2a2a2a\" _builder_version=\"4.16\" background_color=\"#ffffff\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" icon_color=\"#2a2a2a\" _builder_version=\"4.16\" background_color=\"#ffffff\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" width=\"100%\" max_width=\"none\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-49.png\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"4.16\" custom_margin=\"||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','About us','','trash','closed','closed','','__trashed-4','','','2024-02-25 02:16:13','2024-02-25 02:16:13','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=71',0,'page','',0),(72,1,'2024-02-23 19:59:30','2024-02-23 19:59:30','<!-- wp:divi/placeholder /-->','About us','','inherit','closed','closed','','71-revision-v1','','','2024-02-23 19:59:30','2024-02-23 19:59:30','',71,'https://hausofskai-wip.com/moanalagooncharters/?p=72',0,'revision','',0),(73,1,'2024-02-23 20:04:23','2024-02-23 20:04:23','','sight-seeing-59','','inherit','open','closed','','sight-seeing-59','','','2024-02-23 20:04:23','2024-02-23 20:04:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-59.jpg',0,'attachment','image/jpeg',0),(74,1,'2024-02-23 20:04:24','2024-02-23 20:04:24','','sight-seeing-54','','inherit','open','closed','','sight-seeing-54','','','2024-02-23 20:04:24','2024-02-23 20:04:24','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-54.jpg',0,'attachment','image/jpeg',0),(75,1,'2024-02-23 20:04:24','2024-02-23 20:04:24','','sight-seeing-56','','inherit','open','closed','','sight-seeing-56','','','2024-02-23 20:04:24','2024-02-23 20:04:24','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-56.jpg',0,'attachment','image/jpeg',0),(76,1,'2024-02-23 20:04:24','2024-02-23 20:04:24','','sight-seeing-61','','inherit','open','closed','','sight-seeing-61','','','2024-02-23 20:04:24','2024-02-23 20:04:24','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-61.jpg',0,'attachment','image/jpeg',0),(77,1,'2024-02-23 20:04:24','2024-02-23 20:04:24','','sight-seeing-51','','inherit','open','closed','','sight-seeing-51','','','2024-02-23 20:04:24','2024-02-23 20:04:24','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-51.jpg',0,'attachment','image/jpeg',0),(78,1,'2024-02-23 20:05:18','2024-02-23 20:05:18','','sight-seeing-49','','inherit','open','closed','','sight-seeing-49','','','2024-02-23 20:05:18','2024-02-23 20:05:18','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-49.png',0,'attachment','image/png',0),(79,1,'2024-02-23 20:05:23','2024-02-23 20:05:23','','sight-seeing-58','','inherit','open','closed','','sight-seeing-58','','','2024-02-23 20:05:23','2024-02-23 20:05:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-58.jpg',0,'attachment','image/jpeg',0),(80,1,'2024-02-23 20:05:23','2024-02-23 20:05:23','','sight-seeing-57','','inherit','open','closed','','sight-seeing-57','','','2024-02-23 20:05:23','2024-02-23 20:05:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-57.jpg',0,'attachment','image/jpeg',0),(81,1,'2024-02-23 20:05:24','2024-02-23 20:05:24','','sight-seeing-53','','inherit','open','closed','','sight-seeing-53','','','2024-02-23 20:05:24','2024-02-23 20:05:24','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-53.jpg',0,'attachment','image/jpeg',0),(82,1,'2024-02-23 20:05:24','2024-02-23 20:05:24','','sight-seeing-62','','inherit','open','closed','','sight-seeing-62','','','2024-02-23 20:05:24','2024-02-23 20:05:24','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-62.jpg',0,'attachment','image/jpeg',0),(83,1,'2024-02-23 20:05:41','2024-02-23 20:05:41','','sight-seeing-60','','inherit','open','closed','','sight-seeing-60','','','2024-02-23 20:05:41','2024-02-23 20:05:41','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-60.jpg',0,'attachment','image/jpeg',0),(84,1,'2024-02-23 20:05:41','2024-02-23 20:05:41','','sight-seeing-41','','inherit','open','closed','','sight-seeing-41','','','2024-02-23 20:05:41','2024-02-23 20:05:41','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-41.jpg',0,'attachment','image/jpeg',0),(85,1,'2024-02-23 20:07:39','2024-02-23 20:07:39','[et_pb_section fb_built=\"1\" admin_label=\"Events\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" template_type=\"section\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-62.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>4 hrs, $85/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Waterfall Walk</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Surfing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-59.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>4 hrs, $85/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Whale Watching</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Boating\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-54.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Helicopter Tour</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Flying\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-57.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Beach Day</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Relaxing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-56.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Surfing Lessons</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Surfing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-61.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Nature Hike</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Hiking\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-53.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Downtown San Francisco</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Walking\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-58.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Island Hopping</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Flying\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-60.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Cliff Diving</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Extreme Sports\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','publish','closed','closed','','services','','','2024-02-23 20:07:39','2024-02-23 20:07:39','',0,'https://hausofskai-wip.com/moanalagooncharters/et_pb_layout/services/',0,'et_pb_layout','',0),(86,1,'2024-02-23 20:07:57','2024-02-23 20:07:57','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" admin_label=\"Header\" _builder_version=\"4.16\" background_color=\"#242e42\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-49.png\" background_size=\"contain\" background_position=\"bottom_center\" custom_padding=\"||225px|||\" custom_padding_tablet=\"0px||5vw\" custom_padding_phone=\"\" box_shadow_vertical_tablet=\"\" box_shadow_vertical_phone=\"\" box_shadow_vertical_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" module_alignment=\"center\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Lato||||||||\" text_font_size=\"22px\" text_line_height=\"1.8em\" header_font=\"PT Serif|700|||||||\" header_font_size=\"80px\" header_line_height=\"1.2em\" background_layout=\"dark\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"60px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1>Destinations</h1>[/et_pb_text][et_pb_divider color=\"#ffffff\" divider_weight=\"5px\" _builder_version=\"4.16\" max_width=\"100px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Events\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-62.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>4 hrs, $85/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Waterfall Walk</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Surfing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-59.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>4 hrs, $85/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Whale Watching</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Boating\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-54.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Helicopter Tour</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Flying\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-57.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Beach Day</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Relaxing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-56.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Surfing Lessons</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Surfing\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-61.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Nature Hike</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Hiking\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-53.jpg\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Downtown San Francisco</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Walking\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-58.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Island Hopping</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Flying\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-60.jpg\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_text_color=\"#ff3314\" header_3_font_size=\"16px\" header_3_line_height=\"1.4em\" background_color=\"#ffffff\" width=\"200px\" custom_margin=\"-60px||0px|||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"10px|10px|10px||true\" custom_css_main_element=\"position: relative;\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>2 hrs, $185/person</h3>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_3_font=\"Lato|700|||||||\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Cliff Diving</h3>\n<p>Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit</p>[/et_pb_text][et_pb_blurb title=\"Lorem Ipsum Dolor Amet 13413\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Extreme Sports\" use_icon=\"on\" font_icon=\"&#xe08c;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Age: 13+\" use_icon=\"on\" font_icon=\"&#xe023;||divi||400\" icon_color=\"rgba(145,145,145,0.55)\" icon_placement=\"left\" image_icon_width=\"16px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"14px\" header_line_height=\"1.3em\" max_width=\"400px\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"16px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"View Details\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_padding=\"15px|40px|15px|40px|true|true\" box_shadow_style=\"preset3\" box_shadow_color=\"rgba(0,0,0,0.12)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"#242e42 0%|rgba(36,46,66,0.8) 61%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"#242e42\" background_color_gradient_end=\"rgba(36,46,66,0.8)\" background_color_gradient_end_position=\"61%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-41.jpg\" background_position=\"bottom_center\" custom_padding=\"||0px|||\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" z_index=\"1\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"PT Serif||||||||\" text_font_size=\"28px\" text_line_height=\"1.8em\" background_layout=\"dark\" custom_margin=\"|||||\" custom_margin_phone=\"|||0vw\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Morbi Nec Tincidu</p>[/et_pb_text][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" min_height=\"550px\" min_height_tablet=\"100px\" min_height_phone=\"\" min_height_last_edited=\"on|desktop\" border_width_all=\"40px\" border_color_all=\"#ffc600\" border_width_all_tablet=\"\" border_width_all_phone=\"3px\" border_width_all_last_edited=\"on|desktop\" box_shadow_style=\"preset1\" box_shadow_blur=\"33px\" box_shadow_spread=\"22px\" box_shadow_color=\"#242e42\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"160px|||\" custom_padding_tablet=\"0px||\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\" custom_padding_phone=\"0px||\"][et_pb_text _builder_version=\"4.16\" header_font=\"||||||||\" header_2_font=\"PT Serif|700|||||||\" header_2_font_size=\"120px\" background_layout=\"dark\" custom_margin=\"|||-400px\" custom_margin_tablet=\"-130px|||0px\" custom_margin_phone=\"-50px||\" custom_margin_last_edited=\"on|tablet\" header_2_font_size_tablet=\"80px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_text_shadow_style=\"preset1\" header_2_text_shadow_color=\"rgba(36,46,66,0.39)\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Feature Excursion</h2>[/et_pb_text][et_pb_blurb title=\"Lorem ipsum dolor sit amea\" use_icon=\"on\" font_icon=\"&#x52;||divi||400\" icon_color=\"#93adcf\" icon_placement=\"left\" image_icon_width=\"26px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" background_layout=\"dark\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"26px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Consectetur adipiscing elit\" use_icon=\"on\" font_icon=\"&#x52;||divi||400\" icon_color=\"#93adcf\" icon_placement=\"left\" image_icon_width=\"26px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" background_layout=\"dark\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"26px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Nunc sollicitudin nibh\" use_icon=\"on\" font_icon=\"&#x52;||divi||400\" icon_color=\"#93adcf\" icon_placement=\"left\" image_icon_width=\"26px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" background_layout=\"dark\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"26px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"Pharetra lectus iaculis ac\" use_icon=\"on\" font_icon=\"&#x52;||divi||400\" icon_color=\"#93adcf\" icon_placement=\"left\" image_icon_width=\"26px\" _builder_version=\"4.16\" header_font=\"Lato||||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" background_layout=\"dark\" custom_margin=\"||8px\" animation=\"off\" icon_font_size=\"26px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_button button_text=\"Book a Trip\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_margin=\"40px||\" custom_padding=\"15px|40px|15px|40px|true|true\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" z_index=\"0\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||1px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-49.png\" force_fullwidth=\"on\" _builder_version=\"4.16\" custom_margin=\"-14vw||-1px||false\" custom_margin_tablet=\"0vw|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Promo\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"PT Serif|700|||||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"||15px\" header_2_font_size_tablet=\"42px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Private Group Tours &amp; Bundles</h2>[/et_pb_text][et_pb_divider color=\"#000000\" divider_weight=\"5px\" _builder_version=\"4.16\" width=\"150px\" module_alignment=\"center\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][et_pb_text _builder_version=\"4.16\" text_font=\"Lato||||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Lato|900|||||||\" header_3_font_size=\"26px\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" text_orientation=\"justify\" max_width=\"800px\" module_alignment=\"center\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"-200px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"50px|40px|50px|40px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"30px|20px|30px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|desktop\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|desktop\" custom_css_main_element=\"position: relative;\" box_shadow_style=\"preset3\" box_shadow_blur=\"100px\" box_shadow_color=\"rgba(0,0,0,0.12)\" text_text_align=\"justify\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Morbi nec tincidunt nunc, nec dignissim libero. Nulla sagittis eget tellus eu finibus.</h3>\n<p>Morbi nec tincidunt nunc, nec dignissim libero. Nulla sagittis eget tellus eu finibus. Vivamus eget augue suscipit, sollicitudin eros ut, accumsan erat. Nunc varius sagittis lectus et euismod. Aenean et nisi vehicula, laoreet lectus vel, accumsan neque. Proin vitae semper lectus, Morbi nec tincidunt nunc, nec dignissim libero. Nulla sagittis eget tellus eu finibus. Vivamus eget augue suscipit, sollicitudin eros ut, accumsan erat. Nunc varius sagittis lectus et euismod. Aenean et nisi vehicula, laoreet lectus vel, accumsan neque. Proin vitae semper lectus, Morbi nec tincidunt nunc, nec dignissim libero. Nulla sagittis eget tellus eu </p>[/et_pb_text][et_pb_button button_text=\"Talk With A Guide\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#000000\" button_bg_color=\"#ffc600\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" custom_margin=\"40px||\" custom_padding=\"15px|40px|15px|40px|true|true\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#ffffff 0%|rgba(36,46,66,0) 75%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(36,46,66,0)\" background_color_gradient_end_position=\"75%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-51.jpg\" custom_padding=\"||20vw\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"PT Serif|700|||||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"||15px\" header_2_font_size_tablet=\"42px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2> Subscribe for Weekly Deals</h2>[/et_pb_text][et_pb_signup mailchimp_list=\"elegantthemestest|1ea2bbd026\" layout=\"top_bottom\" first_name_field=\"off\" last_name_field=\"off\" _builder_version=\"4.16\" form_field_background_color=\"rgba(36,46,66,0.05)\" form_field_font=\"||||||||\" use_background_color=\"off\" custom_button=\"on\" button_text_size=\"14px\" button_bg_color=\"#ff3314\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Lato|700||on|||||\" button_icon=\"&#x24;||divi||400\" max_width=\"600px\" module_alignment=\"center\" custom_padding=\"0px|||||\" border_radii_fields=\"on|0px|0px|0px|0px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_signup][et_pb_social_media_follow icon_color=\"#2a2a2a\" _builder_version=\"4.16\" text_orientation=\"center\" border_radii=\"on|50px|50px|50px|50px\" border_width_all=\"10px\" border_color_all=\"rgba(0,0,0,0)\" global_colors_info=\"{}\" icon_color__hover=\"#000000\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" icon_color=\"#2a2a2a\" _builder_version=\"4.16\" background_color=\"#ffffff\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" icon_color=\"#2a2a2a\" _builder_version=\"4.16\" background_color=\"#ffffff\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" icon_color=\"#2a2a2a\" _builder_version=\"4.16\" background_color=\"#ffffff\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" width=\"100%\" max_width=\"none\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/sight-seeing-49.png\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"4.16\" custom_margin=\"||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','About us','','inherit','closed','closed','','71-revision-v1','','','2024-02-23 20:07:57','2024-02-23 20:07:57','',71,'https://hausofskai-wip.com/moanalagooncharters/?p=86',0,'revision','',0),(89,1,'2024-02-23 20:25:23','2024-02-23 20:25:23','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" width=\"100%\" max_width=\"none\" custom_padding=\"15vw|10%|15vw|10%|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\" header_text_color=\"#000000\" width=\"60%\" custom_margin=\"||10px||false|false\" header_font_size_tablet=\"5vw\" header_font_size_phone=\"5vw\" header_font_size_last_edited=\"off|phone\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">explore the wonders of aitutaki lagoon</span></h1>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png\" title_text=\"12\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Private charters</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed finibus nisi, sed dictum eros.[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" box_shadow_horizontal=\"3px\" box_shadow_color=\"#000000\" box_shadow_blur=\"5px\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" sticky_enabled=\"0\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Water Taxi </h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Quisque aliquet velit sit amet sem interdum faucibus. In feugiat aliquet mollis etiam tincidunt ligula.[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" box_shadow_horizontal=\"3px\" box_shadow_color=\"#000000\" box_shadow_blur=\"5px\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" sticky_enabled=\"0\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>lagoon tours</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Luctus lectus non quisque turpis bibendum posuere. Morbi tortor nibh, fringilla sed pretium sit amet.[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" box_shadow_horizontal=\"3px\" box_shadow_color=\"#000000\" box_shadow_blur=\"5px\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" sticky_enabled=\"0\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" title_text=\"图像 (8)\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>swim with giant trevally</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>lagoon tours</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" box_shadow_horizontal=\"3px\" box_shadow_color=\"#000000\" box_shadow_blur=\"5px\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688633442222.jpg\" title_text=\"FB_IMG_1688633442222\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" hover_enabled=\"0\" global_colors_info=\"{}\" height=\"643px\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\" background_enable_color=\"off\" sticky_enabled=\"0\"][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>explore picturesque motus</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>Private charter</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" box_shadow_horizontal=\"3px\" box_shadow_color=\"#000000\" box_shadow_blur=\"5px\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Events\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" background_position=\"top_center\" background_vertical_offset=\"22%\" custom_padding=\"0px||0px||true|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" parallax=\"on\" width=\"100%\" max_width=\"none\" custom_padding=\"15%|10%|10%|10%|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#000000\" text_orientation=\"right\" width=\"60%\" module_alignment=\"right\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">explore aitutaki lagoon</span></h2>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\" button_alignment=\"right\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-23 20:25:23','2024-02-23 20:25:23','',9,'https://hausofskai-wip.com/moanalagooncharters/?p=89',0,'revision','',0),(90,1,'2024-02-23 20:59:40','2024-02-23 20:59:40','<!-- wp:divi/placeholder /-->','','','trash','closed','closed','','__trashed','','','2024-02-23 20:59:40','2024-02-23 20:59:40','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=90',0,'page','',0),(91,1,'2024-02-23 20:26:47','2024-02-23 20:26:47','<!-- wp:divi/placeholder /-->','','','inherit','closed','closed','','90-revision-v1','','','2024-02-23 20:26:47','2024-02-23 20:26:47','',90,'https://hausofskai-wip.com/moanalagooncharters/?p=91',0,'revision','',0),(92,1,'2024-02-23 20:33:21','2024-02-23 20:33:21','','travel-landscape-01','','inherit','open','closed','','travel-landscape-01','','','2024-02-23 20:33:21','2024-02-23 20:33:21','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-01.jpg',0,'attachment','image/jpeg',0),(93,1,'2024-02-23 20:33:22','2024-02-23 20:33:22','','travel-coffee','','inherit','open','closed','','travel-coffee','','','2024-02-23 20:33:22','2024-02-23 20:33:22','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-coffee.jpg',0,'attachment','image/jpeg',0),(94,1,'2024-02-23 20:33:23','2024-02-23 20:33:23','','travel-landscape-12','','inherit','open','closed','','travel-landscape-12','','','2024-02-23 20:33:23','2024-02-23 20:33:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-12.jpg',0,'attachment','image/jpeg',0),(95,1,'2024-02-23 20:33:23','2024-02-23 20:33:23','','travel-landscape-05','','inherit','open','closed','','travel-landscape-05','','','2024-02-23 20:33:23','2024-02-23 20:33:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-05.jpg',0,'attachment','image/jpeg',0),(96,1,'2024-02-23 20:33:23','2024-02-23 20:33:23','','travel-landscape-10','','inherit','open','closed','','travel-landscape-10','','','2024-02-23 20:33:23','2024-02-23 20:33:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-10.jpg',0,'attachment','image/jpeg',0),(97,1,'2024-02-23 20:34:07','2024-02-23 20:34:07','','travel-landscape-08','','inherit','open','closed','','travel-landscape-08','','','2024-02-23 20:34:07','2024-02-23 20:34:07','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-08.jpg',0,'attachment','image/jpeg',0),(98,1,'2024-02-23 20:34:07','2024-02-23 20:34:07','','travel-landscape-11','','inherit','open','closed','','travel-landscape-11','','','2024-02-23 20:34:07','2024-02-23 20:34:07','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-11.jpg',0,'attachment','image/jpeg',0),(99,1,'2024-02-23 20:34:07','2024-02-23 20:34:07','','video-cover-01','','inherit','open','closed','','video-cover-01','','','2024-02-23 20:34:07','2024-02-23 20:34:07','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/video-cover-01.jpg',0,'attachment','image/jpeg',0),(100,1,'2024-02-23 20:34:08','2024-02-23 20:34:08','','travel-landscape-03','','inherit','open','closed','','travel-landscape-03','','','2024-02-23 20:34:08','2024-02-23 20:34:08','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-03.jpg',0,'attachment','image/jpeg',0),(101,1,'2024-02-23 20:34:10','2024-02-23 20:34:10','','travel-landscape-17','','inherit','open','closed','','travel-landscape-17','','','2024-02-23 20:34:10','2024-02-23 20:34:10','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-17.jpg',0,'attachment','image/jpeg',0),(102,1,'2024-02-23 20:35:00','2024-02-23 20:35:00','','travel-portrait-03','','inherit','open','closed','','travel-portrait-03','','','2024-02-23 20:35:00','2024-02-23 20:35:00','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-portrait-03.jpg',0,'attachment','image/jpeg',0),(103,1,'2024-02-23 20:35:00','2024-02-23 20:35:00','','travel-portrait-04','','inherit','open','closed','','travel-portrait-04','','','2024-02-23 20:35:00','2024-02-23 20:35:00','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-portrait-04.jpg',0,'attachment','image/jpeg',0),(104,1,'2024-02-23 20:35:00','2024-02-23 20:35:00','','travel-portrait-01','','inherit','open','closed','','travel-portrait-01','','','2024-02-23 20:35:00','2024-02-23 20:35:00','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-portrait-01.jpg',0,'attachment','image/jpeg',0),(105,1,'2024-02-23 20:35:01','2024-02-23 20:35:01','','travel-landscape-13','','inherit','open','closed','','travel-landscape-13','','','2024-02-23 20:35:01','2024-02-23 20:35:01','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-13.png',0,'attachment','image/png',0),(106,1,'2024-02-23 20:35:29','2024-02-23 20:35:29','','couple2','','inherit','open','closed','','couple2','','','2024-02-23 20:35:29','2024-02-23 20:35:29','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/couple2.png',0,'attachment','image/png',0),(107,1,'2024-02-23 20:49:48','2024-02-23 20:49:48','','wedding-planner-30','','inherit','open','closed','','wedding-planner-30','','','2024-02-23 20:49:48','2024-02-23 20:49:48','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/wedding-planner-30.jpg',0,'attachment','image/jpeg',0),(108,1,'2024-02-23 20:49:49','2024-02-23 20:49:49','','divider','','inherit','open','closed','','divider','','','2024-02-23 20:49:49','2024-02-23 20:49:49','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/divider.png',0,'attachment','image/png',0),(109,1,'2024-02-23 20:49:49','2024-02-23 20:49:49','','wedding-planner-32','','inherit','open','closed','','wedding-planner-32','','','2024-02-23 20:49:49','2024-02-23 20:49:49','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/wedding-planner-32.jpg',0,'attachment','image/jpeg',0),(110,1,'2024-02-23 20:49:49','2024-02-23 20:49:49','','img-03','','inherit','open','closed','','img-03','','','2024-02-23 20:49:49','2024-02-23 20:49:49','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/img-03.png',0,'attachment','image/png',0),(111,1,'2024-02-23 20:50:00','2024-02-23 20:50:00','','wedding-planner-04','','inherit','open','closed','','wedding-planner-04','','','2024-02-23 20:50:00','2024-02-23 20:50:00','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/wedding-planner-04.jpg',0,'attachment','image/jpeg',0),(112,1,'2024-02-23 20:50:27','2024-02-23 20:50:27','','wedding-planner-07','','inherit','open','closed','','wedding-planner-07','','','2024-02-23 20:50:27','2024-02-23 20:50:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/wedding-planner-07.jpg',0,'attachment','image/jpeg',0),(113,1,'2024-02-23 20:50:27','2024-02-23 20:50:27','','wedding-planner-06','','inherit','open','closed','','wedding-planner-06','','','2024-02-23 20:50:27','2024-02-23 20:50:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/wedding-planner-06.jpg',0,'attachment','image/jpeg',0),(114,1,'2024-02-23 20:50:28','2024-02-23 20:50:28','','wedding-planner-03','','inherit','open','closed','','wedding-planner-03','','','2024-02-23 20:50:28','2024-02-23 20:50:28','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/wedding-planner-03.jpg',0,'attachment','image/jpeg',0),(115,1,'2024-02-23 20:50:28','2024-02-23 20:50:28','','wedding-planner-01','','inherit','open','closed','','wedding-planner-01','','','2024-02-23 20:50:28','2024-02-23 20:50:28','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/wedding-planner-01.jpg',0,'attachment','image/jpeg',0),(116,1,'2024-02-23 20:50:28','2024-02-23 20:50:28','','wedding-planner-02','','inherit','open','closed','','wedding-planner-02','','','2024-02-23 20:50:28','2024-02-23 20:50:28','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/wedding-planner-02.jpg',0,'attachment','image/jpeg',0),(117,1,'2024-02-23 20:59:40','2024-02-23 20:59:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Hero\" _builder_version=\"4.16\" background_color=\"#233b4e\" parallax=\"on\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header title=\"Explore The World\" button_one_text=\"Learn More\" background_overlay_color=\"rgba(29,38,51,0.86)\" content_max_width=\"700px\" admin_label=\"Hero Section\" _builder_version=\"4.16\" title_font=\"Oswald|on||on|\" title_font_size=\"80px\" title_line_height=\"1.3em\" content_font=\"Roboto||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-01.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_one=\"on\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"4px\" button_one_font=\"Oswald|on||on|\" button_one_icon=\"&#x24;||divi||400\" button_one_icon_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"150px||150px|\" custom_padding_tablet=\"60px||60px|\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" button_one_text_color_hover=\"#ffffff\" button_one_border_color_hover=\"#ffffff\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"4px\" button_one_bg_color_hover=\"rgba(0,0,0,0)\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"on\" button_one_text_color__hover=\"#ffffff\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"on\" button_one_border_color__hover=\"#ffffff\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"on\" button_one_border_radius__hover=\"0px\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"4px\" button_two_letter_spacing__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"on\" button_one_bg_color__hover=\"rgba(0,0,0,0)\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"] Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident. [/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" custom_padding=\"0px||0px|\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.16\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" global_colors_info=\"{}\" column_structure=\"1_4,1_4,1_4,1_4\" theme_builder_area=\"post_content\" width_phone=\"100%\" max_width_phone=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-05.jpg\" show_in_lightbox=\"on\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" animation_style=\"zoom\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_zoom=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-10.jpg\" show_in_lightbox=\"on\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" animation_style=\"zoom\" animation_direction=\"left\" animation_duration=\"500ms\" animation_delay=\"100ms\" animation_intensity_zoom=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-08.jpg\" show_in_lightbox=\"on\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" animation_style=\"zoom\" animation_direction=\"left\" animation_duration=\"500ms\" animation_delay=\"200ms\" animation_intensity_zoom=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-11.jpg\" show_in_lightbox=\"on\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" animation_style=\"zoom\" animation_duration=\"500ms\" animation_delay=\"300ms\" animation_intensity_zoom=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"110px||110px|\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"Discover Beatuty Title\" _builder_version=\"4.16\" text_font=\"||||\" text_text_color=\"#1a1a1a\" header_font=\"Oswald|on||on|\" header_text_align=\"left\" header_font_size=\"60px\" header_line_height=\"1.3em\" animation_style=\"slide\" animation_direction=\"%22fade_in%22\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1>Discover Unlimited Beauty</h1>[/et_pb_text][et_pb_text admin_label=\"Discover Beatuty Sub Title\" _builder_version=\"4.16\" text_font=\"Roboto||||\" text_text_color=\"#1a1a1a\" text_font_size=\"24px\" text_line_height=\"1.4em\" animation_style=\"slide\" animation_direction=\"top\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"] Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. [/et_pb_text][et_pb_divider color=\"#ed4441\" divider_position=\"center\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.16\" max_width=\"150px\" height=\"false\" animation_style=\"slide\" animation_direction=\"top\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off%22%22\" admin_label=\"Discover Beatuty Text\" _builder_version=\"4.16\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_line_height=\"1.9em\" custom_padding=\"30px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_delay=\"300ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip sunt in culpa qui officia deserunt mollit laborum. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip sunt in culpa qui officia deserunt mollit laborum.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-12.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"90px|||\" animation_style=\"fold\" animation_direction=\"right\" animation_intensity_fold=\"20%\" animation=\"fade_in\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA\" _builder_version=\"4.16\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-13.png\" parallax=\"on\" custom_margin=\"|||\" custom_padding=\"0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#ffffff 0%|rgba(255,255,255,0) 22%\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_end_position=\"22%\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_padding=\"220px|0px|220px|0px\" custom_padding_tablet=\"0px|||\" custom_padding_phone=\"\" make_fullwidth=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" width_phone=\"100%\" max_width_phone=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"CTA Section Title\" _builder_version=\"4.16\" text_font=\"||||\" text_line_height=\"1em\" header_font=\"Oswald|on||on|\" header_text_align=\"center\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||60px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1>What are you waiting for?</h1>[/et_pb_text][et_pb_button button_text=\"Get In Touch\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#ed4441\" button_border_color=\"#ed4441\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Oswald|on||on|\" button_icon=\"&#x24;||divi||400\" button_icon_color=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"4px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#1a1a1a\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"on\" button_border_radius__hover=\"0px\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"4px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/couple2.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"100px|||\" animation_direction=\"left\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','','','trash','closed','closed','','__trashed-2','','','2024-02-23 20:59:40','2024-02-23 20:59:40','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=117',0,'page','',0),(118,1,'2024-02-23 20:51:13','2024-02-23 20:51:13','<!-- wp:divi/placeholder /-->','','','inherit','closed','closed','','117-revision-v1','','','2024-02-23 20:51:13','2024-02-23 20:51:13','',117,'https://hausofskai-wip.com/moanalagooncharters/?p=118',0,'revision','',0),(120,1,'2024-02-23 20:59:22','2024-02-23 20:59:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Hero\" _builder_version=\"4.16\" background_color=\"#233b4e\" parallax=\"on\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header title=\"Explore The World\" button_one_text=\"Learn More\" background_overlay_color=\"rgba(29,38,51,0.86)\" content_max_width=\"700px\" admin_label=\"Hero Section\" _builder_version=\"4.16\" title_font=\"Oswald|on||on|\" title_font_size=\"80px\" title_line_height=\"1.3em\" content_font=\"Roboto||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-01.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_one=\"on\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"4px\" button_one_font=\"Oswald|on||on|\" button_one_icon=\"&#x24;||divi||400\" button_one_icon_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"150px||150px|\" custom_padding_tablet=\"60px||60px|\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" button_one_text_color_hover=\"#ffffff\" button_one_border_color_hover=\"#ffffff\" button_one_border_radius_hover=\"0px\" button_one_letter_spacing_hover=\"4px\" button_one_bg_color_hover=\"rgba(0,0,0,0)\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"on\" button_one_text_color__hover=\"#ffffff\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"on\" button_one_border_color__hover=\"#ffffff\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"on\" button_one_border_radius__hover=\"0px\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"4px\" button_two_letter_spacing__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"on\" button_one_bg_color__hover=\"rgba(0,0,0,0)\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"] Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident. [/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" custom_padding=\"0px||0px|\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.16\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" global_colors_info=\"{}\" column_structure=\"1_4,1_4,1_4,1_4\" theme_builder_area=\"post_content\" width_phone=\"100%\" max_width_phone=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-05.jpg\" show_in_lightbox=\"on\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" animation_style=\"zoom\" animation_direction=\"left\" animation_duration=\"500ms\" animation_intensity_zoom=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-10.jpg\" show_in_lightbox=\"on\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" animation_style=\"zoom\" animation_direction=\"left\" animation_duration=\"500ms\" animation_delay=\"100ms\" animation_intensity_zoom=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-08.jpg\" show_in_lightbox=\"on\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" animation_style=\"zoom\" animation_direction=\"left\" animation_duration=\"500ms\" animation_delay=\"200ms\" animation_intensity_zoom=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-11.jpg\" show_in_lightbox=\"on\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" animation_style=\"zoom\" animation_duration=\"500ms\" animation_delay=\"300ms\" animation_intensity_zoom=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"110px||110px|\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"Discover Beatuty Title\" _builder_version=\"4.16\" text_font=\"||||\" text_text_color=\"#1a1a1a\" header_font=\"Oswald|on||on|\" header_text_align=\"left\" header_font_size=\"60px\" header_line_height=\"1.3em\" animation_style=\"slide\" animation_direction=\"%22fade_in%22\" animation_duration=\"500ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1>Discover Unlimited Beauty</h1>[/et_pb_text][et_pb_text admin_label=\"Discover Beatuty Sub Title\" _builder_version=\"4.16\" text_font=\"Roboto||||\" text_text_color=\"#1a1a1a\" text_font_size=\"24px\" text_line_height=\"1.4em\" animation_style=\"slide\" animation_direction=\"top\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"] Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. [/et_pb_text][et_pb_divider color=\"#ed4441\" divider_position=\"center\" divider_weight=\"3px\" disabled_on=\"off|off|off\" _builder_version=\"4.16\" max_width=\"150px\" height=\"false\" animation_style=\"slide\" animation_direction=\"top\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_divider][et_pb_text disabled_on=\"on|on|off%22%22\" admin_label=\"Discover Beatuty Text\" _builder_version=\"4.16\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_line_height=\"1.9em\" custom_padding=\"30px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_delay=\"300ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip sunt in culpa qui officia deserunt mollit laborum. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip sunt in culpa qui officia deserunt mollit laborum.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-12.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"90px|||\" animation_style=\"fold\" animation_direction=\"right\" animation_intensity_fold=\"20%\" animation=\"fade_in\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA\" _builder_version=\"4.16\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-13.png\" parallax=\"on\" custom_margin=\"|||\" custom_padding=\"0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#ffffff 0%|rgba(255,255,255,0) 22%\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_end_position=\"22%\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_padding=\"220px|0px|220px|0px\" custom_padding_tablet=\"0px|||\" custom_padding_phone=\"\" make_fullwidth=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" width_phone=\"100%\" max_width_phone=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text admin_label=\"CTA Section Title\" _builder_version=\"4.16\" text_font=\"||||\" text_line_height=\"1em\" header_font=\"Oswald|on||on|\" header_text_align=\"center\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_alignment=\"center\" custom_margin=\"||60px|\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1>What are you waiting for?</h1>[/et_pb_text][et_pb_button button_text=\"Get In Touch\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#ed4441\" button_border_color=\"#ed4441\" button_border_radius=\"0px\" button_letter_spacing=\"4px\" button_font=\"Oswald|on||on|\" button_icon=\"&#x24;||divi||400\" button_icon_color=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"4px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#1a1a1a\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"on\" button_border_radius__hover=\"0px\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"4px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/couple2.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"100px|||\" animation_direction=\"left\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','117-revision-v1','','','2024-02-23 20:59:22','2024-02-23 20:59:22','',117,'https://hausofskai-wip.com/moanalagooncharters/?p=120',0,'revision','',0),(121,1,'2024-02-24 21:54:44','2024-02-24 21:54:44','[et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"4.22.0\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"95bcb655-38ea-4072-a99d-2ebec6f03a06\" locked=\"off\" global_colors_info=\"{}\"]<h1>services</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_divider _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Water Taxi</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\"]<p><span>Discover Aitutaki\'s hidden gems with ease aboard Monas Water Taxi. Glide effortlessly across the crystalline waters of the lagoon, escaping the crowds and accessing secluded spots inaccessible by land. With personalized service and expert local guides, Monas ensures a tailored experience, whether you\'re seeking pristine beaches, vibrant coral reefs for snorkeling, or panoramic views of Aitutaki\'s stunning landscapes.</span></p>\n<p><strong>Prices:</strong><br /><span>$80 per adult <br />$40 per child 8 to 12 years<br /></span></p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Drop Off &amp; Pick Up </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Flexibility on times</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Half day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" custom_margin=\"|||24px||\"]<p><strong>3.5 hr Duration<br /></strong><span>Two Time Slots : <br /><strong>9am - 12.30pm | 1pm - 4.30pm</strong><br />This tour includes: <br />* light fruit refreshments</span><br /><span>* water </span><br /><span>*coconut Juice </span><br /><span>* towels</span><br /><span>*hotel transfers</span><br /><span>*flippers</span><br /><span>*2-3 snorkeling stops</span><br /><span>*2 island hopping</span><br /><span>Tour can be adjusted to your requests.</span><br /><span>MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.</span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Light Fruit Refreshments</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_margin=\"|580px||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Full day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" custom_padding=\"|||23px||\"]<p><strong>6 hr Duration</strong><span><br /><strong>10am - 4pm</strong><br /> (times can be adjusted suitable to your needs). Tour can be adjusted to your requests...<br /><strong>This tour includes:</strong> <br />*BBQ lunch ( available options are t-boned chicken, fish and sausages).<br />*light fruit refreshments <br />*Water<br />* coconut juice<br />* towels<br />*accommodation transfers<br />*flippers<br />* 3-4 snorkeling stops<br />*2-3 island hopping <br />MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.<br /></span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>BBQ Lunch</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','publish','closed','closed','','services','','','2024-03-12 22:26:28','2024-03-12 22:26:28','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=121',0,'page','',0),(122,1,'2024-02-23 21:00:08','2024-02-23 21:00:08','<!-- wp:divi/placeholder /-->','','','inherit','closed','closed','','121-revision-v1','','','2024-02-23 21:00:08','2024-02-23 21:00:08','',121,'https://hausofskai-wip.com/moanalagooncharters/?p=122',0,'revision','',0),(123,1,'2024-02-23 21:02:22','2024-02-23 21:02:22','','01_img','','inherit','open','closed','','01_img','','','2024-02-23 21:02:22','2024-02-23 21:02:22','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/01_img.jpg',0,'attachment','image/jpeg',0),(124,1,'2024-02-23 21:02:24','2024-02-23 21:02:24','','02_img','','inherit','open','closed','','02_img','','','2024-02-23 21:02:24','2024-02-23 21:02:24','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/02_img.jpg',0,'attachment','image/jpeg',0),(125,1,'2024-02-23 21:02:25','2024-02-23 21:02:25','','03_img','','inherit','open','closed','','03_img','','','2024-02-23 21:02:25','2024-02-23 21:02:25','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/03_img.jpg',0,'attachment','image/jpeg',0),(126,1,'2024-02-23 21:02:25','2024-02-23 21:02:25','','07_img','','inherit','open','closed','','07_img','','','2024-02-23 21:02:25','2024-02-23 21:02:25','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/07_img.jpg',0,'attachment','image/jpeg',0),(128,1,'2024-02-23 21:07:22','2024-02-23 21:07:22','','travel-landscape-19','','inherit','open','closed','','travel-landscape-19','','','2024-02-23 21:07:22','2024-02-23 21:07:22','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-19.jpg',0,'attachment','image/jpeg',0),(129,1,'2024-02-23 21:07:23','2024-02-23 21:07:23','','travel-person-iso','','inherit','open','closed','','travel-person-iso','','','2024-02-23 21:07:23','2024-02-23 21:07:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-person-iso.png',0,'attachment','image/png',0),(130,1,'2024-02-23 21:07:26','2024-02-23 21:07:26','','travel-binoculars','','inherit','open','closed','','travel-binoculars','','','2024-02-23 21:07:26','2024-02-23 21:07:26','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-binoculars.jpg',0,'attachment','image/jpeg',0),(131,1,'2024-02-23 21:07:26','2024-02-23 21:07:26','','travel-landscape-18','','inherit','open','closed','','travel-landscape-18','','','2024-02-23 21:07:26','2024-02-23 21:07:26','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-18.jpg',0,'attachment','image/jpeg',0),(132,1,'2024-02-23 21:07:44','2024-02-23 21:07:44','','travel-landscape-04','','inherit','open','closed','','travel-landscape-04','','','2024-02-23 21:07:44','2024-02-23 21:07:44','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-landscape-04.jpg',0,'attachment','image/jpeg',0),(133,1,'2024-02-23 21:08:01','2024-02-23 21:08:01','','travel-bank','','inherit','open','closed','','travel-bank','','','2024-02-23 21:08:01','2024-02-23 21:08:01','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/travel-bank.jpg',0,'attachment','image/jpeg',0),(135,1,'2024-02-24 19:58:35','2024-02-24 19:58:35','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"d674f17b-3628-435f-94a3-cd5f46b9d033\" header_text_color=\"#000000\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Pricing</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Pricing\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h5>Water Taxi</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" global_colors_info=\"{}\"]<h2>$80 Adult<br />$40 Child*</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Includes Drop Off &amp; Pick Up</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Islet of your choice ( Motu ) </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>*Children 6-12yrs</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"349ef676-0dc8-4f6a-8211-812ee2f3e626\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" custom_margin=\"30px||||false|false\" box_shadow_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h5>Half Day Private Charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<h2>$400 per couple</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Additional $50 per Child (6-12 yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>3.5hr tour - 2 time slots available</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Includes light fruit refreshments</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" box_shadow_color=\"#000000\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h5>full day private charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\"]<h2><span style=\"color: #edf000;\">$650 per couple</span></h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Additional $50 per Child (6-12yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>6hr tour</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Includes BBQ Lunch</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"d2a12ef6-278e-44ed-8514-bb2f2133e927\" button_bg_color=\"#EDF000\" custom_margin=\"30px||||false|false\" box_shadow_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22,%22button_bg_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" background_enable_image=\"off\" background_enable_pattern_style=\"on\" background_pattern_style=\"waves\" background_pattern_color=\"rgba(0,0,0,0.03)\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"bd8161b9-8c84-401a-830e-388346bc15c8\" header_2_text_color=\"#000000\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h2>Book A tour</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"6a1c1e72-6780-430f-832d-659bf4b27bec\" text_text_color=\"#000000\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>Ready to book? Click below to secure your booking.</p>[/et_pb_text][et_pb_button button_url=\"https://lorinamataiti.setmore.com/lorinamataiti\" url_new_window=\"on\" button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" box_shadow_color=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Prices','','publish','closed','closed','','prices','','','2024-03-12 22:24:44','2024-03-12 22:24:44','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=135',0,'page','',0),(136,1,'2024-02-24 18:18:18','2024-02-24 18:18:18','<!-- wp:divi/placeholder /-->','','','inherit','closed','closed','','135-revision-v1','','','2024-02-24 18:18:18','2024-02-24 18:18:18','',135,'https://hausofskai-wip.com/moanalagooncharters/?p=136',0,'revision','',0),(137,1,'2024-02-24 19:43:10','2024-02-24 19:43:10','','fitness-trainer-icon-white-padding-08@2x','','inherit','open','closed','','fitness-trainer-icon-white-padding-082x','','','2024-02-24 19:43:10','2024-02-24 19:43:10','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-white-padding-08@2x.png',0,'attachment','image/png',0),(138,1,'2024-02-24 19:43:11','2024-02-24 19:43:11','','fitness-trainer-icon-white-padding-02@2x','','inherit','open','closed','','fitness-trainer-icon-white-padding-022x','','','2024-02-24 19:43:11','2024-02-24 19:43:11','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-white-padding-02@2x.png',0,'attachment','image/png',0),(139,1,'2024-02-24 19:43:12','2024-02-24 19:43:12','','fitness-trainer-icon-white-padding-03@2x','','inherit','open','closed','','fitness-trainer-icon-white-padding-032x','','','2024-02-24 19:43:12','2024-02-24 19:43:12','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-white-padding-03@2x.png',0,'attachment','image/png',0),(141,1,'2024-02-24 19:58:35','2024-02-24 19:58:35','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"d674f17b-3628-435f-94a3-cd5f46b9d033\" header_text_color=\"#000000\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">Pricing</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Pricing\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>Water Taxi</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>$80 Adult<br />$40 Child*</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Includes Drop Off &amp; Pick Up</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Islet of your choice ( Motu ) </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>*Children 8-12yrs</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][et_pb_button button_text=\"Get Started\" _builder_version=\"4.22.0\" _module_preset=\"349ef676-0dc8-4f6a-8211-812ee2f3e626\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22%93}\" theme_builder_area=\"post_content\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" box_shadow_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#0C71C3\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>Half Day Private Charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2>$400 per couple</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Additional $50 per Child (8-12 yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>3.5hr tour - 2 time slots available</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Includes light fruit refreshments</p>[/et_pb_blurb][et_pb_button button_text=\"Get Started\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>full day private charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2><span style=\"color: #edf000;\">$650 per couple</span></h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Additional $50 per Child (8-12yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>6hr tour</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Includes BBQ Lunch</p>[/et_pb_blurb][et_pb_button button_text=\"Get Started\" _builder_version=\"4.22.0\" _module_preset=\"d2a12ef6-278e-44ed-8514-bb2f2133e927\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22,%22button_bg_color%22%93}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" box_shadow_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" background_enable_image=\"off\" background_enable_pattern_style=\"on\" background_pattern_style=\"honeycomb\" background_pattern_color=\"rgba(0,0,0,0.03)\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"bd8161b9-8c84-401a-830e-388346bc15c8\" header_2_text_color=\"#000000\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Book A tour</h2>[/et_pb_text][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"6a1c1e72-6780-430f-832d-659bf4b27bec\" text_text_color=\"#000000\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Lorem ipsum dolor sit amet consectetur adipiscing elit orci, commodo lobortis ridiculus proin mauris netus</span></p>[/et_pb_text][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"0dbbce98-519d-4943-b773-d60dcb279919\" text_text_color=\"#000000\" header_3_text_color=\"#000000\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3><span>(462)-567-8901</span></h3>[/et_pb_text][et_pb_button button_text=\"Get Started With a Free Assessment\" button_alignment=\"center\" _builder_version=\"4.23.2\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','135-revision-v1','','','2024-02-24 19:58:35','2024-02-24 19:58:35','',135,'https://hausofskai-wip.com/moanalagooncharters/?p=141',0,'revision','',0),(143,1,'2024-02-24 20:45:30','2024-02-24 20:45:30','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"d674f17b-3628-435f-94a3-cd5f46b9d033\" header_text_color=\"#000000\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">Pricing</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Pricing\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>Water Taxi</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>$80 Adult<br />$40 Child*</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Includes Drop Off &amp; Pick Up</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Islet of your choice ( Motu ) </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>*Children 8-12yrs</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"349ef676-0dc8-4f6a-8211-812ee2f3e626\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22%93}\" theme_builder_area=\"post_content\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" box_shadow_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>Half Day Private Charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2>$400 per couple</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Additional $50 per Child (8-12 yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>3.5hr tour - 2 time slots available</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Includes light fruit refreshments</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>full day private charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2><span style=\"color: #edf000;\">$650 per couple</span></h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Additional $50 per Child (8-12yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>6hr tour</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Includes BBQ Lunch</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"d2a12ef6-278e-44ed-8514-bb2f2133e927\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22,%22button_bg_color%22%93}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" box_shadow_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" background_enable_image=\"off\" background_enable_pattern_style=\"on\" background_pattern_style=\"waves\" background_pattern_color=\"rgba(0,0,0,0.03)\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"bd8161b9-8c84-401a-830e-388346bc15c8\" header_2_text_color=\"#000000\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Book A tour</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"6a1c1e72-6780-430f-832d-659bf4b27bec\" text_text_color=\"#000000\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Ready to book? Click below to secure your booking.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" box_shadow_color=\"#000000\" sticky_enabled=\"0\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','135-revision-v1','','','2024-02-24 20:45:30','2024-02-24 20:45:30','',135,'https://hausofskai-wip.com/moanalagooncharters/?p=143',0,'revision','',0),(144,1,'2024-02-24 20:46:07','2024-02-24 20:46:07','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"d674f17b-3628-435f-94a3-cd5f46b9d033\" header_text_color=\"#000000\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">Pricing</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Pricing\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>Water Taxi</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>$80 Adult<br />$40 Child*</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Includes Drop Off &amp; Pick Up</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Islet of your choice ( Motu ) </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>*Children 8-12yrs</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"349ef676-0dc8-4f6a-8211-812ee2f3e626\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22%93}\" theme_builder_area=\"post_content\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" box_shadow_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>Half Day Private Charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2>$400 per couple</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Additional $50 per Child (8-12 yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>3.5hr tour - 2 time slots available</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Includes light fruit refreshments</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>full day private charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2><span style=\"color: #edf000;\">$650 per couple</span></h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Additional $50 per Child (8-12yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>6hr tour</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Includes BBQ Lunch</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"d2a12ef6-278e-44ed-8514-bb2f2133e927\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22,%22button_bg_color%22%93}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" box_shadow_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" background_enable_image=\"off\" background_enable_pattern_style=\"on\" background_pattern_style=\"waves\" background_pattern_color=\"rgba(0,0,0,0.03)\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"bd8161b9-8c84-401a-830e-388346bc15c8\" header_2_text_color=\"#000000\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Book A tour</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"6a1c1e72-6780-430f-832d-659bf4b27bec\" text_text_color=\"#000000\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Ready to book? Click below to secure your booking.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" box_shadow_color=\"#000000\" sticky_enabled=\"0\" button_alignment=\"center\" button_url=\"https://lorinamataiti.setmore.com/lorinamataiti\" url_new_window=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','135-revision-v1','','','2024-02-24 20:46:07','2024-02-24 20:46:07','',135,'https://hausofskai-wip.com/moanalagooncharters/?p=144',0,'revision','',0),(145,1,'2024-02-24 20:46:45','2024-02-24 20:46:45','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"d674f17b-3628-435f-94a3-cd5f46b9d033\" header_text_color=\"#000000\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\">Pricing</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Pricing\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>Water Taxi</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>$80 Adult<br />$40 Child*</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Includes Drop Off &amp; Pick Up</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Islet of your choice ( Motu ) </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>*Children 8-12yrs</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"349ef676-0dc8-4f6a-8211-812ee2f3e626\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22%93}\" theme_builder_area=\"post_content\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" box_shadow_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>Half Day Private Charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2>$400 per couple</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Additional $50 per Child (8-12 yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>3.5hr tour - 2 time slots available</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Includes light fruit refreshments</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h5>full day private charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2><span style=\"color: #edf000;\">$650 per couple</span></h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Additional $50 per Child (8-12yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>6hr tour</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Includes BBQ Lunch</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"d2a12ef6-278e-44ed-8514-bb2f2133e927\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22,%22button_bg_color%22%93}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" box_shadow_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" background_enable_image=\"off\" background_enable_pattern_style=\"on\" background_pattern_style=\"waves\" background_pattern_color=\"rgba(0,0,0,0.03)\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"bd8161b9-8c84-401a-830e-388346bc15c8\" header_2_text_color=\"#000000\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Book A tour</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"6a1c1e72-6780-430f-832d-659bf4b27bec\" text_text_color=\"#000000\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Ready to book? Click below to secure your booking.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" box_shadow_color=\"#000000\" sticky_enabled=\"0\" button_alignment=\"center\" button_url=\"https://lorinamataiti.setmore.com/lorinamataiti\" url_new_window=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"5d81cd22-fce7-4502-b00e-c37030b45472\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"010abe8a-2497-43e9-a38c-3ff16363a834\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Prices','','inherit','closed','closed','','135-revision-v1','','','2024-02-24 20:46:45','2024-02-24 20:46:45','',135,'https://hausofskai-wip.com/moanalagooncharters/?p=145',0,'revision','',0),(146,1,'2024-02-24 20:48:30','2024-02-24 20:48:30','','personal-trainer-22','','inherit','open','closed','','personal-trainer-22','','','2024-02-24 20:48:30','2024-02-24 20:48:30','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-22.jpg',0,'attachment','image/jpeg',0),(147,1,'2024-02-24 20:48:30','2024-02-24 20:48:30','','fitness-trainer-icon-dark-padding-08@2x','','inherit','open','closed','','fitness-trainer-icon-dark-padding-082x','','','2024-02-24 20:48:30','2024-02-24 20:48:30','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-dark-padding-08@2x.png',0,'attachment','image/png',0),(148,1,'2024-02-24 20:48:30','2024-02-24 20:48:30','','fitness-trainer-icon-dark-padding-06@2x','','inherit','open','closed','','fitness-trainer-icon-dark-padding-062x','','','2024-02-24 20:48:30','2024-02-24 20:48:30','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-dark-padding-06@2x.png',0,'attachment','image/png',0),(149,1,'2024-02-24 20:48:31','2024-02-24 20:48:31','','fitness-trainer-icon-dark-padding-05@2x','','inherit','open','closed','','fitness-trainer-icon-dark-padding-052x','','','2024-02-24 20:48:31','2024-02-24 20:48:31','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-dark-padding-05@2x.png',0,'attachment','image/png',0),(150,1,'2024-02-24 20:48:33','2024-02-24 20:48:33','','personal-trainer-24b','','inherit','open','closed','','personal-trainer-24b','','','2024-02-24 20:48:33','2024-02-24 20:48:33','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-24b.jpg',0,'attachment','image/jpeg',0),(152,1,'2024-02-24 21:33:02','2024-02-24 21:33:02','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.22.0\" _module_preset=\"default\"][/et_pb_section]','','','inherit','closed','closed','','121-revision-v1','','','2024-02-24 21:33:02','2024-02-24 21:33:02','',121,'https://hausofskai-wip.com/moanalagooncharters/?p=152',0,'revision','',0),(154,1,'2024-02-24 21:42:41','2024-02-24 21:42:41','[et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"95bcb655-38ea-4072-a99d-2ebec6f03a06\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1>services</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.22.0\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_divider _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_divider][et_pb_divider _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Water Taxi</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Discover Aitutaki\'s hidden gems with ease aboard Monas Water Taxi. Glide effortlessly across the crystalline waters of the lagoon, escaping the crowds and accessing secluded spots inaccessible by land. With personalized service and expert local guides, Monas ensures a tailored experience, whether you\'re seeking pristine beaches, vibrant coral reefs for snorkeling, or panoramic views of Aitutaki\'s stunning landscapes.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Drop Off &amp; Pick Up </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Flexibility on times</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Half day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><strong>3.5 hr Duration<br /></strong><span>Two Time Slots : <br /><strong>9am - 12.30pm | 1pm - 4.30pm</strong><br />This tour includes: <br />* light fruit refreshments</span><br /><span>* water </span><br /><span>*coconut Juice </span><br /><span>* towels</span><br /><span>*hotel transfers</span><br /><span>*flippers</span><br /><span>*2-3 snorkeling stops</span><br /><span>*2 island hopping</span><br /><span>Tour can be adjusted to your requests.</span><br /><span>MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Light Fruit Refreshments</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" custom_margin=\"|580px||auto||\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Half day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><strong>3.5 hr Duration<br /></strong><span>Two Time Slots : <br /><strong>9am - 12.30pm | 1pm - 4.30pm</strong><br />This tour includes: <br />* light fruit refreshments</span><br /><span>* water </span><br /><span>*coconut Juice </span><br /><span>* towels</span><br /><span>*hotel transfers</span><br /><span>*flippers</span><br /><span>*2-3 snorkeling stops</span><br /><span>*2 island hopping</span><br /><span>Tour can be adjusted to your requests.</span><br /><span>MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Light Fruit Refreshments</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Agility</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed finibus nisi, sed dictum eros.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Strength</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Quisque aliquet velit sit amet sem interdum faucibus. In feugiat aliquet mollis etiam tincidunt ligula.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Goals</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Luctus lectus non quisque turpis bibendum posuere. Morbi tortor nibh, fringilla sed pretium sit amet.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-22.jpg\" title_text=\"personal-trainer-22\" _builder_version=\"4.23.2\" _module_preset=\"default\" custom_margin=\"|-20%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" header_2_text_color=\"#000000\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Bigger, Faster, Stronger</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_text_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Quis blandit erat. Donec laoreet libero non metus volutpat consequat in vel metus. Sed non augue id felis pellentesque. Vitae consequat augue. Vivamus eget dolor vel quam condimentum sodales in bibendum odio urna sit amet.</p>[/et_pb_text][et_pb_button button_text=\"Schedule & Call\" _builder_version=\"4.22.1\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>What To Expect</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb image_icon_background_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-dark-padding-08@2x.png\" _builder_version=\"4.22.1\" _module_preset=\"bcfbf70c-b4c2-422e-8573-e6554c3f511b\" custom_margin=\"||0px||false|false\" locked=\"off\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22image_icon_background_color%22%93}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Agility</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed finibus nisi, sed dictum eros.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb image_icon_background_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-dark-padding-06@2x.png\" _builder_version=\"4.22.1\" _module_preset=\"bcfbf70c-b4c2-422e-8573-e6554c3f511b\" custom_margin=\"||0px||false|false\" locked=\"off\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22image_icon_background_color%22%93}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Strength</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Quisque aliquet velit sit amet sem interdum faucibus. In feugiat aliquet mollis etiam tincidunt ligula.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb image_icon_background_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/fitness-trainer-icon-dark-padding-05@2x.png\" _builder_version=\"4.22.1\" _module_preset=\"bcfbf70c-b4c2-422e-8573-e6554c3f511b\" custom_margin=\"||0px||false|false\" locked=\"off\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22image_icon_background_color%22%93}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Goals</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]Luctus lectus non quisque turpis bibendum posuere. Morbi tortor nibh, fringilla sed pretium sit amet.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonials\" _builder_version=\"4.22.1\" _module_preset=\"default\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>What My CLients Are Saying</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"7d61e70e-f5d9-4787-a01a-471e4143bb55\" header_5_text_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22header_5_text_color%22%93}\" theme_builder_area=\"post_content\"]<h5>★★★★★</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>\"Nisl massa, ultrices vitae ornare sit amet, ultricies eget orci. Sed vitae nulla et justo pellentesque congue nec eu risus. Fermentum nulla non justo aliquet, quis vehicula quam consequat duis ut hendrerit.\"</h4>[/et_pb_text][et_pb_blurb title=\"Angela Charlton\" image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/portrait-square-11.jpg\" _builder_version=\"4.23.2\" _module_preset=\"4bfba2b2-0e30-4520-99f8-8564bc46c57e\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Athlete</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"7d61e70e-f5d9-4787-a01a-471e4143bb55\" header_5_text_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22header_5_text_color%22%93}\" theme_builder_area=\"post_content\"]<h5>★★★★★</h5>[/et_pb_text][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"d3dff80c-cc4f-4760-8470-eb58bb6cc31b\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>\"In non pulvinar purus. Curabitur nisi odio, blandit et elit at, suscipit pharetra efficitur elit. Etiam quis blandit erat donec laoreet libero non metus.\"</h4>[/et_pb_text][et_pb_blurb title=\"Saif Guerra\" image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/portrait-square-05.jpg\" _builder_version=\"4.22.1\" _module_preset=\"4bfba2b2-0e30-4520-99f8-8564bc46c57e\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Runner</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.23.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"#000000 0%|rgba(255,255,255,0) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-24b.jpg\" max_width=\"1280px\" custom_padding=\"0px||0px||true|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" background_enable_image=\"off\" parallax=\"on\" custom_padding=\"20%|60px|60px|60px|false|true\" custom_padding_tablet=\"|30px|30px|30px|false|true\" custom_padding_phone=\"|20px|20px|20px|false|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" header_2_text_color=\"#FFFFFF\" text_orientation=\"center\" width=\"60%\" module_alignment=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Book A Session Today</h2>[/et_pb_text][et_pb_button button_text=\"Get Started\" button_alignment=\"center\" _builder_version=\"4.22.1\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','121-revision-v1','','','2024-02-24 21:42:41','2024-02-24 21:42:41','',121,'https://hausofskai-wip.com/moanalagooncharters/?p=154',0,'revision','',0),(156,1,'2024-02-24 21:54:44','2024-02-24 21:54:44','[et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"95bcb655-38ea-4072-a99d-2ebec6f03a06\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1>services</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.22.0\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_divider _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Water Taxi</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Discover Aitutaki\'s hidden gems with ease aboard Monas Water Taxi. Glide effortlessly across the crystalline waters of the lagoon, escaping the crowds and accessing secluded spots inaccessible by land. With personalized service and expert local guides, Monas ensures a tailored experience, whether you\'re seeking pristine beaches, vibrant coral reefs for snorkeling, or panoramic views of Aitutaki\'s stunning landscapes.</span></p>\n<p><strong>Prices:</strong><br /><span>$80 per adult <br />$40 per child 8 to 12 years<br /></span></p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Drop Off &amp; Pick Up </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Flexibility on times</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_3593\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"208px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"图像 (6)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_20230710_122318_249\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"210px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Half day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><strong>3.5 hr Duration<br /></strong><span>Two Time Slots : <br /><strong>9am - 12.30pm | 1pm - 4.30pm</strong><br />This tour includes: <br />* light fruit refreshments</span><br /><span>* water </span><br /><span>*coconut Juice </span><br /><span>* towels</span><br /><span>*hotel transfers</span><br /><span>*flippers</span><br /><span>*2-3 snorkeling stops</span><br /><span>*2 island hopping</span><br /><span>Tour can be adjusted to your requests.</span><br /><span>MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.</span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Light Fruit Refreshments</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_3593\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"208px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"图像 (6)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_20230710_122318_249\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"210px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" custom_margin=\"|580px||auto||\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Full day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><strong>6 hr Duration</strong><span><br /><strong>10am - 4pm</strong><br /> (times can be adjusted suitable to your needs). Tour can be adjusted to your requests...<br /><strong>This tour includes:</strong> <br />*BBQ lunch ( available options are t-boned chicken, fish and sausages).<br />*light fruit refreshments <br />*Water<br />* coconut juice<br />* towels<br />*accommodation transfers<br />*flippers<br />* 3-4 snorkeling stops<br />*2-3 island hopping <br />MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.<br /></span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>BBQ Lunch</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_3593\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"208px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"图像 (6)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_20230710_122318_249\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"210px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_padding=\"||0px|||\" hover_enabled=\"0\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"图像 (5)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-5.jpeg\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h6><span style=\"color: #ffffff;\">About me</span></h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<p><span style=\"color: #ffffff;\"><a href=\"#\" style=\"color: #ffffff;\">About</a></span></p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6><span style=\"color: #ffffff;\">Follow Me</span></h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','121-revision-v1','','','2024-02-24 21:54:44','2024-02-24 21:54:44','',121,'https://hausofskai-wip.com/moanalagooncharters/?p=156',0,'revision','',0),(157,1,'2024-02-24 21:55:15','2024-02-24 21:55:15','[et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"95bcb655-38ea-4072-a99d-2ebec6f03a06\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1>services</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.22.0\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_divider _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Water Taxi</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Discover Aitutaki\'s hidden gems with ease aboard Monas Water Taxi. Glide effortlessly across the crystalline waters of the lagoon, escaping the crowds and accessing secluded spots inaccessible by land. With personalized service and expert local guides, Monas ensures a tailored experience, whether you\'re seeking pristine beaches, vibrant coral reefs for snorkeling, or panoramic views of Aitutaki\'s stunning landscapes.</span></p>\n<p><strong>Prices:</strong><br /><span>$80 per adult <br />$40 per child 8 to 12 years<br /></span></p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Drop Off &amp; Pick Up </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Flexibility on times</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_3593\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"208px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"图像 (6)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_20230710_122318_249\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"210px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Half day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><strong>3.5 hr Duration<br /></strong><span>Two Time Slots : <br /><strong>9am - 12.30pm | 1pm - 4.30pm</strong><br />This tour includes: <br />* light fruit refreshments</span><br /><span>* water </span><br /><span>*coconut Juice </span><br /><span>* towels</span><br /><span>*hotel transfers</span><br /><span>*flippers</span><br /><span>*2-3 snorkeling stops</span><br /><span>*2 island hopping</span><br /><span>Tour can be adjusted to your requests.</span><br /><span>MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.</span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Light Fruit Refreshments</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_3593\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"208px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"图像 (6)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_20230710_122318_249\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"210px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" custom_margin=\"|580px||auto||\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 style=\"text-align: left;\">Full day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><strong>6 hr Duration</strong><span><br /><strong>10am - 4pm</strong><br /> (times can be adjusted suitable to your needs). Tour can be adjusted to your requests...<br /><strong>This tour includes:</strong> <br />*BBQ lunch ( available options are t-boned chicken, fish and sausages).<br />*light fruit refreshments <br />*Water<br />* coconut juice<br />* towels<br />*accommodation transfers<br />*flippers<br />* 3-4 snorkeling stops<br />*2-3 island hopping <br />MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.<br /></span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p>BBQ Lunch</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_3593\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"208px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"图像 (6)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"IMG_20230710_122318_249\" hover_enabled=\"0\" sticky_enabled=\"0\" height=\"210px\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_padding=\"||0px|||\" hover_enabled=\"0\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"图像 (5)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-5.jpeg\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h6><span style=\"color: #ffffff;\">About me</span></h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<p><span style=\"color: #ffffff;\"><a href=\"#\" style=\"color: #ffffff;\">About</a></span></p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"a773186e-f0f0-41cc-9be2-c26bd871509e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6><span style=\"color: #ffffff;\">Follow Me</span></h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','121-revision-v1','','','2024-02-24 21:55:15','2024-02-24 21:55:15','',121,'https://hausofskai-wip.com/moanalagooncharters/?p=157',0,'revision','',0),(158,1,'2024-02-24 22:38:54','2024-02-24 22:38:54','[et_pb_section fb_built=\"1\" admin_label=\"Contact Form\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Booking Enquiry</h2>[/et_pb_text][et_pb_contact_form _builder_version=\"4.22.0\" _module_preset=\"97fe88bd-5948-4afe-b0c7-aed177aef606\" button_bg_color=\"#EDF000\" hover_enabled=\"0\" box_shadow_color_button=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\" email=\"mwatertaxi@gmail.com\" use_redirect=\"on\" redirect_url=\"https://lorinamataiti.setmore.com/lorinamataiti\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Requested_service\" field_title=\"Requested service\" field_type=\"select\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" select_options=\"%91{%22value%22:%22Water taxi%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Half Day Private Charter%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Full Day Private Charter%22,%22checked%22:0,%22dragID%22:1}%93\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Date_Required\" field_title=\"Date Required\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Number_of_Adults\" field_title=\"Number of Adults\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Number_of_children\" field_title=\"Number of Children\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Name_of_Accomodation\" field_title=\"Name of Accomodation \" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"FAQ\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\" title_text=\"图像 (4)\" background_enable_image=\"off\" sticky_enabled=\"0\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Frequently Asked Questions</h2>[/et_pb_text][et_pb_accordion toggle_icon=\"&#xf067;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"900aad7e-927d-4b95-8342-f7c1cde8262c\" locked=\"off\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22open_toggle_text_color%22%93}\" theme_builder_area=\"post_content\" border_width_all=\"0px\"][et_pb_accordion_item title=\"How many people can you accommodate on a charter?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p><span>Monas can accommodate both small and large groups, with options available for solo travelers, couples, families, and larger parties.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Are the charters suitable for families with children?\" open=\"off\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Absolutely! Monas welcomes families and offers child-friendly activities and amenities onboard, ensuring a safe and enjoyable experience for guests of all ages.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Can I customize my charter itinerary with Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"on\" sticky_enabled=\"0\"]<p><span>Yes, Monas encourages guests to customize their charter experience to suit their preferences. Whether you want to visit specific snorkeling spots, explore secluded beaches, or simply relax and enjoy the scenery, we can tailor the itinerary to your liking.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Are snorkeling gear and equipment provided by Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p>No. Unfortunately since COVID we have decided to seize supplying snorkeling equipment for guest due to our inability to ensure they are sanitized to a high standard. We recommend you supply your own mask and snorkels. </p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Is food and drinks included in Monas charters?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p>We supply light fruit refreshments, water &amp; coconut water (Nu) for our Half Charters &amp; a BBQ Lunch with water &amp; Coconut water (Nu) for our full day charters.</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What happens in case of bad weather during my charter with Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\" sticky_enabled=\"0\"]<p><span>Your safety is our top priority. In the event of inclement weather, Monas will work with you to reschedule your charter for another suitable time or offer a full refund, depending on availability and your preferences.</span></p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Booking Enquiry','','publish','closed','closed','','booking-enquiry','','','2024-02-24 22:43:00','2024-02-24 22:43:00','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=158',0,'page','',0),(159,1,'2024-02-24 21:55:40','2024-02-24 21:55:40','<!-- wp:divi/placeholder /-->','Booking Enquiry','','inherit','closed','closed','','158-revision-v1','','','2024-02-24 21:55:40','2024-02-24 21:55:40','',158,'https://hausofskai-wip.com/moanalagooncharters/?p=159',0,'revision','',0),(160,1,'2024-02-24 21:56:38','2024-02-24 21:56:38','','personal-trainer-27','','inherit','open','closed','','personal-trainer-27','','','2024-02-24 21:56:38','2024-02-24 21:56:38','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/personal-trainer-27.jpg',0,'attachment','image/jpeg',0),(162,1,'2024-02-24 22:38:54','2024-02-24 22:38:54','[et_pb_section fb_built=\"1\" admin_label=\"Contact Form\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Booking Enquiry</h2>[/et_pb_text][et_pb_contact_form _builder_version=\"4.22.0\" _module_preset=\"97fe88bd-5948-4afe-b0c7-aed177aef606\" button_bg_color=\"#EDF000\" hover_enabled=\"0\" box_shadow_color_button=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\" email=\"mwatertaxi@gmail.com\" use_redirect=\"on\" redirect_url=\"https://lorinamataiti.setmore.com/lorinamataiti\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Requested_service\" field_title=\"Requested service\" field_type=\"select\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" select_options=\"%91{%22value%22:%22Water taxi%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Half Day Private Charter%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Full Day Private Charter%22,%22checked%22:0,%22dragID%22:1}%93\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Date_Required\" field_title=\"Date Required\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Number_of_Adults\" field_title=\"Number of Adults\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Number_of_children\" field_title=\"Number of Children\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Name_of_Accomodation\" field_title=\"Name of Accomodation \" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"FAQ\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Frequently Asked Questions</h2>[/et_pb_text][et_pb_accordion toggle_icon=\"&#xf067;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"900aad7e-927d-4b95-8342-f7c1cde8262c\" locked=\"off\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22open_toggle_text_color%22%93}\" theme_builder_area=\"post_content\" border_width_all=\"0px\"][et_pb_accordion_item title=\"How many people can you accommodate on a charter?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p><span>Monas can accommodate both small and large groups, with options available for solo travelers, couples, families, and larger parties.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Are the charters suitable for families with children?\" open=\"off\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Absolutely! Monas welcomes families and offers child-friendly activities and amenities onboard, ensuring a safe and enjoyable experience for guests of all ages.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Can I customize my charter itinerary with Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p><span>Yes, Monas encourages guests to customize their charter experience to suit their preferences. Whether you want to visit specific snorkeling spots, explore secluded beaches, or simply relax and enjoy the scenery, we can tailor the itinerary to your liking.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Are snorkeling gear and equipment provided by Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p>No. Unfortunately since COVID we have decided to seize supplying snorkeling equipment for guest due to our inability to ensure they are sanitized to a high standard. We recommend you supply your own mask and snorkels. </p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Is food and drinks included in Monas charters?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p>We supply light fruit refreshments, water &amp; coconut water (Nu) for our Half Charters &amp; a BBQ Lunch with water &amp; Coconut water (Nu) for our full day charters.</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What happens in case of bad weather during my charter with Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"on\" sticky_enabled=\"0\"]<p><span>Your safety is our top priority. In the event of inclement weather, Monas will work with you to reschedule your charter for another suitable time or offer a full refund, depending on availability and your preferences.</span></p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Booking Enquiry','','inherit','closed','closed','','158-revision-v1','','','2024-02-24 22:38:54','2024-02-24 22:38:54','',158,'https://hausofskai-wip.com/moanalagooncharters/?p=162',0,'revision','',0),(164,1,'2024-02-24 22:42:59','2024-02-24 22:43:00','[et_pb_section fb_built=\"1\" admin_label=\"Contact Form\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Booking Enquiry</h2>[/et_pb_text][et_pb_contact_form _builder_version=\"4.22.0\" _module_preset=\"97fe88bd-5948-4afe-b0c7-aed177aef606\" button_bg_color=\"#EDF000\" hover_enabled=\"0\" box_shadow_color_button=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\" email=\"mwatertaxi@gmail.com\" use_redirect=\"on\" redirect_url=\"https://lorinamataiti.setmore.com/lorinamataiti\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Requested_service\" field_title=\"Requested service\" field_type=\"select\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" select_options=\"%91{%22value%22:%22Water taxi%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Half Day Private Charter%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Full Day Private Charter%22,%22checked%22:0,%22dragID%22:1}%93\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Date_Required\" field_title=\"Date Required\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Number_of_Adults\" field_title=\"Number of Adults\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Number_of_children\" field_title=\"Number of Children\" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Name_of_Accomodation\" field_title=\"Name of Accomodation \" fullwidth_field=\"on\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"FAQ\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\" theme_builder_area=\"post_content\" title_text=\"图像 (4)\" background_enable_image=\"off\" sticky_enabled=\"0\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"9f7de078-f7b1-48aa-9f9e-3c17ad71017e\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Frequently Asked Questions</h2>[/et_pb_text][et_pb_accordion toggle_icon=\"&#xf067;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"900aad7e-927d-4b95-8342-f7c1cde8262c\" locked=\"off\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22open_toggle_text_color%22%93}\" theme_builder_area=\"post_content\" border_width_all=\"0px\"][et_pb_accordion_item title=\"How many people can you accommodate on a charter?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p><span>Monas can accommodate both small and large groups, with options available for solo travelers, couples, families, and larger parties.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Are the charters suitable for families with children?\" open=\"off\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Absolutely! Monas welcomes families and offers child-friendly activities and amenities onboard, ensuring a safe and enjoyable experience for guests of all ages.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Can I customize my charter itinerary with Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"on\" sticky_enabled=\"0\"]<p><span>Yes, Monas encourages guests to customize their charter experience to suit their preferences. Whether you want to visit specific snorkeling spots, explore secluded beaches, or simply relax and enjoy the scenery, we can tailor the itinerary to your liking.</span></p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Are snorkeling gear and equipment provided by Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p>No. Unfortunately since COVID we have decided to seize supplying snorkeling equipment for guest due to our inability to ensure they are sanitized to a high standard. We recommend you supply your own mask and snorkels. </p>[/et_pb_accordion_item][et_pb_accordion_item title=\"Is food and drinks included in Monas charters?\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\"]<p>We supply light fruit refreshments, water &amp; coconut water (Nu) for our Half Charters &amp; a BBQ Lunch with water &amp; Coconut water (Nu) for our full day charters.</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What happens in case of bad weather during my charter with Monas?\" _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" open=\"off\" sticky_enabled=\"0\"]<p><span>Your safety is our top priority. In the event of inclement weather, Monas will work with you to reschedule your charter for another suitable time or offer a full refund, depending on availability and your preferences.</span></p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px|||\" saved_tabs=\"all\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>About me</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Facility</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Team</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Contact</a>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"#\">Get Started</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Drop By</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]1234 Divi St. #1000, San Francisco, CA 94220[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Contact</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"](255) 352-6258[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" link_text_color=\"gcid-995ea536-d942-449e-b40e-0d7d5e4aa608\" custom_margin=\"||10px||false|false\" global_colors_info=\"{%22gcid-995ea536-d942-449e-b40e-0d7d5e4aa608%22:%91%22link_text_color%22%93}\" theme_builder_area=\"post_content\"]<a href=\"mailto:#\">hello@divifitness.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"86410e26-4f52-437b-a078-bb846557564e\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h6>Follow Me</h6>[/et_pb_text][et_pb_social_media_follow icon_color=\"gcid-fb7185f0-febc-426c-87a9-b6e9798849ab\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{%22gcid-fb7185f0-febc-426c-87a9-b6e9798849ab%22:%91%22icon_color%22%93}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" border_color_all=\"rgba(0,0,0,0.08)\" border_width_top=\"1px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.1\" _dynamic_attributes=\"content\" _module_preset=\"d84ef971-31dd-4395-9937-44aa895b4a7a\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiY3VycmVudF9kYXRlIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiQ29weXJpZ2h0ICZjb3B5OyAiLCJhZnRlciI6IiBEaXZpLiBBbGwgUmlnaHRzIFJlc2VydmVkLiIsImRhdGVfZm9ybWF0IjoiY3VzdG9tIiwiY3VzdG9tX2RhdGVfZm9ybWF0IjoiWSJ9fQ==@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Booking Enquiry','','inherit','closed','closed','','158-revision-v1','','','2024-02-24 22:42:59','2024-02-24 22:43:00','',158,'https://hausofskai-wip.com/moanalagooncharters/?p=164',0,'revision','',0),(165,1,'2024-02-24 22:44:11','2024-02-24 22:44:11','','Book','','publish','closed','closed','','book','','','2024-02-24 22:44:11','2024-02-24 22:44:11','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=165',4,'nav_menu_item','',0),(166,1,'2024-02-24 22:44:11','2024-02-24 22:44:11',' ','','','publish','closed','closed','','166','','','2024-02-24 22:44:11','2024-02-24 22:44:11','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=166',1,'nav_menu_item','',0),(167,1,'2024-02-24 22:44:11','2024-02-24 22:44:11',' ','','','publish','closed','closed','','167','','','2024-02-24 22:44:11','2024-02-24 22:44:11','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=167',3,'nav_menu_item','',0),(168,1,'2024-02-24 22:44:11','2024-02-24 22:44:11',' ','','','publish','closed','closed','','168','','','2024-02-24 22:44:11','2024-02-24 22:44:11','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=168',2,'nav_menu_item','',0),(169,1,'2024-02-24 22:45:11','2024-02-24 22:45:11','{\n    \"show_on_front\": {\n        \"value\": \"page\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-24 22:45:11\"\n    },\n    \"page_on_front\": {\n        \"value\": \"9\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-24 22:45:11\"\n    }\n}','','','trash','closed','closed','','d271fb2f-e768-4c8d-a4a1-c73ff7862941','','','2024-02-24 22:45:11','2024-02-24 22:45:11','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/24/d271fb2f-e768-4c8d-a4a1-c73ff7862941/',0,'customize_changeset','',0),(170,1,'2024-02-24 22:47:30','2024-02-24 22:47:30','{\n    \"et_divi[custom_footer_credits]\": {\n        \"value\": \"Mona\'s Lagoon Charters | Copyright \\u00a9 2024 | Website designed by <b> Haus of Skai Ltd </b>\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-24 22:47:30\"\n    }\n}','','','trash','closed','closed','','e9b880d1-89d5-463d-ac53-e2590058895c','','','2024-02-24 22:47:30','2024-02-24 22:47:30','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=170',0,'customize_changeset','',0),(171,1,'2024-02-24 22:47:41','2024-02-24 22:47:41','{\n    \"et_divi[show_footer_social_icons]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-24 22:47:41\"\n    }\n}','','','trash','closed','closed','','4ac8608f-c837-4aac-b1f2-2a6ee944cdaa','','','2024-02-24 22:47:41','2024-02-24 22:47:41','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/24/4ac8608f-c837-4aac-b1f2-2a6ee944cdaa/',0,'customize_changeset','',0),(172,1,'2024-02-24 22:48:35','2024-02-24 22:48:35','{\n    \"sidebars_widgets[sidebar-2]\": {\n        \"value\": [],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-24 22:48:35\"\n    }\n}','','','trash','closed','closed','','855c2a8b-169c-4516-8879-edf486d4d49f','','','2024-02-24 22:48:35','2024-02-24 22:48:35','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/24/855c2a8b-169c-4516-8879-edf486d4d49f/',0,'customize_changeset','',0),(173,1,'2024-02-25 01:35:50','2024-02-25 01:35:50','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" width=\"100%\" max_width=\"none\" custom_padding=\"15vw|10%|15vw|10%|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\" header_text_color=\"#000000\" width=\"60%\" custom_margin=\"||10px||false|false\" header_font_size_tablet=\"5vw\" header_font_size_phone=\"5vw\" header_font_size_last_edited=\"off|phone\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">explore the wonders of aitutaki lagoon</span></h1>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png\" title_text=\"12\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Private charters</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed finibus nisi, sed dictum eros.[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Water Taxi </h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Quisque aliquet velit sit amet sem interdum faucibus. In feugiat aliquet mollis etiam tincidunt ligula.[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>lagoon tours</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Luctus lectus non quisque turpis bibendum posuere. Morbi tortor nibh, fringilla sed pretium sit amet.[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" title_text=\"图像 (8)\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>swim with giant trevally</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>lagoon tours</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688633442222.jpg\" title_text=\"FB_IMG_1688633442222\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"643px\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>explore picturesque motus</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>Private charter</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.22.0\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.22.0\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][trustindex no-registration=tripadvisor][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" background_position=\"top_center\" background_vertical_offset=\"22%\" custom_padding=\"0px||0px||true|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" parallax=\"on\" width=\"100%\" max_width=\"none\" custom_padding=\"15%|10%|10%|10%|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#000000\" text_orientation=\"right\" width=\"60%\" module_alignment=\"right\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">explore aitutaki lagoon</span></h2>[/et_pb_text][et_pb_button button_text=\"Book now\" button_alignment=\"right\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-25 01:35:50','2024-02-25 01:35:50','',9,'https://hausofskai-wip.com/moanalagooncharters/?p=173',0,'revision','',0),(174,1,'2024-02-25 01:38:50','2024-02-25 01:38:50','','Untitled design (21)','','inherit','open','closed','','untitled-design-21','','','2024-02-25 01:38:50','2024-02-25 01:38:50','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/Untitled-design-21.png',0,'attachment','image/png',0),(175,1,'2024-02-25 01:39:59','2024-02-25 01:39:59','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" width=\"100%\" max_width=\"none\" custom_padding=\"15vw|10%|15vw|10%|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\" header_text_color=\"#000000\" width=\"60%\" custom_margin=\"||10px||false|false\" header_font_size_tablet=\"5vw\" header_font_size_phone=\"5vw\" header_font_size_last_edited=\"off|phone\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">explore the wonders of aitutaki lagoon</span></h1>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png\" title_text=\"12\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Private charters</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sed finibus nisi, sed dictum eros.[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Water Taxi </h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Quisque aliquet velit sit amet sem interdum faucibus. In feugiat aliquet mollis etiam tincidunt ligula.[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>lagoon tours</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]Luctus lectus non quisque turpis bibendum posuere. Morbi tortor nibh, fringilla sed pretium sit amet.[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.0\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#000000\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" title_text=\"图像 (8)\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>swim with giant trevally</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>lagoon tours</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688633442222.jpg\" title_text=\"FB_IMG_1688633442222\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"643px\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>explore picturesque motus</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>Private charter</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.22.0\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.22.0\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][trustindex no-registration=tripadvisor][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" background_position=\"top_center\" background_vertical_offset=\"22%\" custom_padding=\"0px||0px||true|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" parallax=\"on\" width=\"100%\" max_width=\"none\" custom_padding=\"15%|10%|10%|10%|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#000000\" text_orientation=\"right\" width=\"60%\" module_alignment=\"right\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">explore aitutaki lagoon</span></h2>[/et_pb_text][et_pb_button button_text=\"Book now\" button_alignment=\"right\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-25 01:39:59','2024-02-25 01:39:59','',9,'https://hausofskai-wip.com/moanalagooncharters/?p=175',0,'revision','',0),(177,1,'2024-02-25 01:46:12','2024-02-25 01:46:12','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" width=\"100%\" max_width=\"none\" custom_padding=\"15vw|10%|15vw|10%|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\" header_text_color=\"#000000\" width=\"60%\" custom_margin=\"||10px||false|false\" header_font_size_tablet=\"5vw\" header_font_size_phone=\"5vw\" header_font_size_last_edited=\"off|phone\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">explore the wonders of aitutaki lagoon</span></h1>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png\" title_text=\"12\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Private charters</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>Escape the crowds and immerse yourself in an atmosphere of exclusivity. With a private vessel at your disposal, you have the freedom to explore the p\'Lagoon at your own pace, away from the hustle and bustle of larger tour groups.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" hover_enabled=\"0\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Water Taxi </h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>Whether you\'re embarking on a day of adventure or simply need to reach your destination quickly and efficiently, our Water Taxi service offers unparalleled convenience. With multiple pickup and drop-off locations available, we ensure seamless connectivity to your desired destinations.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>lagoon tours</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>At Mona Lagoon Cruise, we\'re committed to preserving the natural beauty and ecological integrity of our Lagoon. Our Lagoon Tours prioritize responsible tourism practices, ensuring minimal impact on the environment while maximizing your enjoyment of this pristine paradise.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.0\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#000000\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" title_text=\"图像 (8)\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>swim with giant trevally</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>lagoon tours</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688633442222.jpg\" title_text=\"FB_IMG_1688633442222\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"643px\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>explore picturesque motus</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>Private charter</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.22.0\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.22.0\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][trustindex no-registration=tripadvisor][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" background_position=\"top_center\" background_vertical_offset=\"22%\" custom_padding=\"0px||0px||true|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" parallax=\"on\" width=\"100%\" max_width=\"none\" custom_padding=\"15%|10%|10%|10%|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#000000\" text_orientation=\"right\" width=\"60%\" module_alignment=\"right\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">explore aitutaki lagoon</span></h2>[/et_pb_text][et_pb_button button_text=\"Book now\" button_alignment=\"right\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-25 01:46:12','2024-02-25 01:46:12','',9,'https://hausofskai-wip.com/moanalagooncharters/?p=177',0,'revision','',0),(178,1,'2024-02-25 01:46:44','2024-02-25 01:46:44','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" width=\"100%\" max_width=\"none\" custom_padding=\"15vw|10%|15vw|10%|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\" header_text_color=\"#000000\" width=\"60%\" custom_margin=\"||10px||false|false\" header_font_size_tablet=\"5vw\" header_font_size_phone=\"5vw\" header_font_size_last_edited=\"off|phone\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">explore the wonders of aitutaki lagoon</span></h1>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png\" title_text=\"12\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Private charters</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>Escape the crowds and immerse yourself in an atmosphere of exclusivity. With a private vessel at your disposal, you have the freedom to explore the p\'Lagoon at your own pace, away from the hustle and bustle of larger tour groups.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" hover_enabled=\"0\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Water Taxi </h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>Whether you\'re embarking on a day of adventure or simply need to reach your destination quickly and efficiently, our Water Taxi service offers unparalleled convenience. With multiple pickup and drop-off locations available, we ensure seamless connectivity to your desired destinations.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>lagoon tours</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>At Mona Lagoon Cruise, we\'re committed to preserving the natural beauty and ecological integrity of our Lagoon. Our Lagoon Tours prioritize responsible tourism practices, ensuring minimal impact on the environment while maximizing your enjoyment of this pristine paradise.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.0\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#000000\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" title_text=\"图像 (8)\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>swim with giant trevally</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>lagoon tours</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688633442222.jpg\" title_text=\"FB_IMG_1688633442222\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"643px\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>explore picturesque motus</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>Private charter</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#000000\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.22.0\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.22.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][trustindex no-registration=tripadvisor][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" background_position=\"top_center\" background_vertical_offset=\"22%\" custom_padding=\"0px||0px||true|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" parallax=\"on\" width=\"100%\" max_width=\"none\" custom_padding=\"15%|10%|10%|10%|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#000000\" text_orientation=\"right\" width=\"60%\" module_alignment=\"right\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">explore aitutaki lagoon</span></h2>[/et_pb_text][et_pb_button button_text=\"Book now\" button_alignment=\"right\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-25 01:46:44','2024-02-25 01:46:44','',9,'https://hausofskai-wip.com/moanalagooncharters/?p=178',0,'revision','',0),(179,1,'2024-02-25 02:13:51','2024-02-25 02:13:51','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|tablet\" admin_label=\"Header\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px|0px|1px||false|false\" custom_padding_tablet=\"0px||12vw||false|false\" custom_padding_phone=\"0px||20vw||false|false\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"-15vw\" box_shadow_vertical=\"0px\" box_shadow_color=\"#1b1d20\" box_shadow_horizontal_tablet=\"0vw\" box_shadow_horizontal_phone=\"0vw\" box_shadow_horizontal_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.22.0\" max_width=\"1180px\" custom_margin=\"||80px||false|false\" custom_padding=\"12vw|50px|0px|50px|false|true\" custom_padding_tablet=\"12vw||||false|true\" custom_padding_phone=\"20vw||||false|false\" border_color_all=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" border_width_left=\"2px\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22border_color_all%22%93}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" header_font=\"Oswald|500||on|||||\" header_font_size=\"140px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_font_size=\"24px\" background_layout=\"dark\" max_width=\"800px\" header_font_size_tablet=\"80px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"16px\" header_4_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h4></h4>\n<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.16\" background_color=\"#1b1d20\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_3_font=\"Merriweather||||||||\" header_3_font_size=\"24px\" header_3_line_height=\"1.8em\" background_layout=\"dark\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h3>Offering bespoke experiences tailored to families and groups of friends. Wether you want to ditch the crowds or just want to decide where to go in the lagoon, we\'ve got what you need.</h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" background_position=\"top_center\" background_vertical_offset=\"33%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>Greetings and a warm Kia Orana!</p>\n<p>Welcome aboard Mona\'s Lagoon Charter &amp; Water Taxi, where we are delighted to introduce you to the wonders of Aitutaki\'s pristine paradise.</p>\n<p>Step into the heart of Aitutaki\'s paradise with Mona\'s Lagoon Charter &amp; Water Taxi, a family-run business born from the love of our island home. It all began with Mum and Dad, Teremoana and Noo, who started out running a simple water taxi service. When they moved to Samoa, they handed over the reins to us, Dan &amp; Lo, their adventurous offspring. Eager to carry on their legacy and add our own flair, we\'ve been busy sprucing things up with a fresh name, a vibrant logo, and a whole lot of passion.</p>\n<p>But for us, it\'s not just about business – it\'s about family, community, and sharing the wonders of Aitutaki with the world. We\'re taking things slow and steady, focusing on growth that benefits not only our own kin but also our beloved island community. Every excursion with us is a chance to experience the genuine warmth and hospitality of Aitutaki, where the turquoise waters teem with life and the soft sands beckon you to relax and unwind. So come on board, join our family, and let\'s create unforgettable memories together amidst the breathtaking beauty of Mona\'s Lagoon.</p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" background_color=\"#efefef\" custom_padding=\"17px||17px||true|\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-3.jpg\" title_text=\"caption (3)\" _builder_version=\"4.22.0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" title_text=\"caption (2)\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" text_font=\"|600|||||||\" text_line_height=\"1.8em\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"80px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" header_4_line_height=\"1.4em\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"35px\" header_2_font_size_last_edited=\"on|phone\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"14px\" header_4_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22header_4_text_color%22%93}\"]<h4>Gallery</h4>\n<h2>Become Part of Our story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption.jpg\" title_text=\"caption\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592594391.jpg\" title_text=\"FB_IMG_1696592594391\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632594213.jpg\" title_text=\"FB_IMG_1688632594213\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670-scaled.jpeg\" title_text=\"IMG_2670\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" title_text=\"FB_IMG_1696592608347\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','publish','closed','closed','','about-us','','','2024-03-05 00:55:22','2024-03-05 00:55:22','',0,'https://hausofskai-wip.com/moanalagooncharters/?page_id=179',0,'page','',0),(180,1,'2024-02-25 01:47:52','2024-02-25 01:47:52','<!-- wp:divi/placeholder /-->','','','inherit','closed','closed','','179-revision-v1','','','2024-02-25 01:47:52','2024-02-25 01:47:52','',179,'https://hausofskai-wip.com/moanalagooncharters/?p=180',0,'revision','',0),(181,1,'2024-02-25 01:50:51','2024-02-25 01:50:51','','header-bg-1','','inherit','open','closed','','header-bg-1','','','2024-02-25 01:50:51','2024-02-25 01:50:51','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/header-bg-1.jpg',0,'attachment','image/jpeg',0),(182,1,'2024-02-25 01:50:52','2024-02-25 01:50:52','','coffee-item-10','','inherit','open','closed','','coffee-item-10','','','2024-02-25 01:50:52','2024-02-25 01:50:52','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/coffee-item-10.jpg',0,'attachment','image/jpeg',0),(183,1,'2024-02-25 01:50:54','2024-02-25 01:50:54','','coffee-item-2','','inherit','open','closed','','coffee-item-2','','','2024-02-25 01:50:54','2024-02-25 01:50:54','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/coffee-item-2.png',0,'attachment','image/png',0),(184,1,'2024-02-25 01:50:54','2024-02-25 01:50:54','','coffee-item-1','','inherit','open','closed','','coffee-item-1','','','2024-02-25 01:50:54','2024-02-25 01:50:54','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/coffee-item-1.png',0,'attachment','image/png',0),(185,1,'2024-02-25 01:50:55','2024-02-25 01:50:55','','coffee-item-3','','inherit','open','closed','','coffee-item-3','','','2024-02-25 01:50:55','2024-02-25 01:50:55','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/coffee-item-3.png',0,'attachment','image/png',0),(186,1,'2024-02-25 01:51:03','2024-02-25 01:51:03','','section-bg-12','','inherit','open','closed','','section-bg-12','','','2024-02-25 01:51:03','2024-02-25 01:51:03','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/section-bg-12.jpg',0,'attachment','image/jpeg',0),(187,1,'2024-02-25 01:51:04','2024-02-25 01:51:04','','section-bg-9','','inherit','open','closed','','section-bg-9','','','2024-02-25 01:51:04','2024-02-25 01:51:04','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/section-bg-9.jpg',0,'attachment','image/jpeg',0),(188,1,'2024-02-25 01:51:06','2024-02-25 01:51:06','','section-bg-10','','inherit','open','closed','','section-bg-10','','','2024-02-25 01:51:06','2024-02-25 01:51:06','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/section-bg-10.jpg',0,'attachment','image/jpeg',0),(189,1,'2024-02-25 01:51:07','2024-02-25 01:51:07','','section-bg-3','','inherit','open','closed','','section-bg-3','','','2024-02-25 01:51:07','2024-02-25 01:51:07','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/section-bg-3.jpg',0,'attachment','image/jpeg',0),(190,1,'2024-02-25 01:51:08','2024-02-25 01:51:08','','icon-1','','inherit','open','closed','','icon-1','','','2024-02-25 01:51:08','2024-02-25 01:51:08','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/icon-1.png',0,'attachment','image/png',0),(191,1,'2024-02-25 01:51:15','2024-02-25 01:51:15','','icon-2','','inherit','open','closed','','icon-2','','','2024-02-25 01:51:15','2024-02-25 01:51:15','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/icon-2.png',0,'attachment','image/png',0),(192,1,'2024-02-25 01:51:15','2024-02-25 01:51:15','','icon-3','','inherit','open','closed','','icon-3','','','2024-02-25 01:51:15','2024-02-25 01:51:15','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/icon-3.png',0,'attachment','image/png',0),(193,1,'2024-02-25 01:51:15','2024-02-25 01:51:15','','gallery-coffee-image-1','','inherit','open','closed','','gallery-coffee-image-1','','','2024-02-25 01:51:15','2024-02-25 01:51:15','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/gallery-coffee-image-1.jpg',0,'attachment','image/jpeg',0),(194,1,'2024-02-25 01:51:15','2024-02-25 01:51:15','','gallery-coffee-image-2-1','','inherit','open','closed','','gallery-coffee-image-2-1','','','2024-02-25 01:51:15','2024-02-25 01:51:15','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/gallery-coffee-image-2-1.jpg',0,'attachment','image/jpeg',0),(195,1,'2024-02-25 01:51:16','2024-02-25 01:51:16','','gallery-coffee-image-5','','inherit','open','closed','','gallery-coffee-image-5','','','2024-02-25 01:51:16','2024-02-25 01:51:16','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/gallery-coffee-image-5.jpg',0,'attachment','image/jpeg',0),(196,1,'2024-02-25 01:51:23','2024-02-25 01:51:23','','section-bg-7','','inherit','open','closed','','section-bg-7','','','2024-02-25 01:51:23','2024-02-25 01:51:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/section-bg-7.jpg',0,'attachment','image/jpeg',0),(197,1,'2024-02-25 01:59:23','2024-02-25 01:59:23','','brewery-03','','inherit','open','closed','','brewery-03','','','2024-02-25 01:59:23','2024-02-25 01:59:23','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-03.jpg',0,'attachment','image/jpeg',0),(198,1,'2024-02-25 01:59:25','2024-02-25 01:59:25','','brewery-07','','inherit','open','closed','','brewery-07','','','2024-02-25 01:59:25','2024-02-25 01:59:25','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-07.jpg',0,'attachment','image/jpeg',0),(199,1,'2024-02-25 01:59:25','2024-02-25 01:59:25','','brewery-08','','inherit','open','closed','','brewery-08','','','2024-02-25 01:59:25','2024-02-25 01:59:25','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-08.jpg',0,'attachment','image/jpeg',0),(200,1,'2024-02-25 01:59:25','2024-02-25 01:59:25','','brewery-11','','inherit','open','closed','','brewery-11','','','2024-02-25 01:59:25','2024-02-25 01:59:25','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-11.jpg',0,'attachment','image/jpeg',0),(201,1,'2024-02-25 01:59:25','2024-02-25 01:59:25','','brewery-09','','inherit','open','closed','','brewery-09','','','2024-02-25 01:59:25','2024-02-25 01:59:25','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-09.jpg',0,'attachment','image/jpeg',0),(202,1,'2024-02-25 01:59:33','2024-02-25 01:59:33','','brewery-10','','inherit','open','closed','','brewery-10','','','2024-02-25 01:59:33','2024-02-25 01:59:33','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-10.jpg',0,'attachment','image/jpeg',0),(203,1,'2024-02-25 01:59:33','2024-02-25 01:59:33','','Group-16-1','','inherit','open','closed','','group-16-1','','','2024-02-25 01:59:33','2024-02-25 01:59:33','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/Group-16-1.png',0,'attachment','image/png',0),(204,1,'2024-02-25 01:59:33','2024-02-25 01:59:33','','brewery-04','','inherit','open','closed','','brewery-04','','','2024-02-25 01:59:33','2024-02-25 01:59:33','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-04.jpg',0,'attachment','image/jpeg',0),(205,1,'2024-02-25 01:59:33','2024-02-25 01:59:33','','brewery-16','','inherit','open','closed','','brewery-16','','','2024-02-25 01:59:33','2024-02-25 01:59:33','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-16.jpg',0,'attachment','image/jpeg',0),(206,1,'2024-02-25 01:59:34','2024-02-25 01:59:34','','brewery-17','','inherit','open','closed','','brewery-17','','','2024-02-25 01:59:34','2024-02-25 01:59:34','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/brewery-17.jpg',0,'attachment','image/jpeg',0),(207,1,'2024-02-25 02:00:17','2024-02-25 02:00:17','','caption (1)','','inherit','open','closed','','caption-1','','','2024-02-25 02:00:17','2024-02-25 02:00:17','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg',0,'attachment','image/jpeg',0),(208,1,'2024-02-25 02:00:27','2024-02-25 02:00:27','','caption (2)','','inherit','open','closed','','caption-2','','','2024-02-25 02:00:27','2024-02-25 02:00:27','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg',0,'attachment','image/jpeg',0),(209,1,'2024-02-25 02:00:35','2024-02-25 02:00:35','','caption (3)','','inherit','open','closed','','caption-3','','','2024-02-25 02:00:35','2024-02-25 02:00:35','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-3.jpg',0,'attachment','image/jpeg',0),(210,1,'2024-02-25 02:00:38','2024-02-25 02:00:38','','caption','','inherit','open','closed','','caption','','','2024-02-25 02:00:38','2024-02-25 02:00:38','',0,'https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption.jpg',0,'attachment','image/jpeg',0),(212,1,'2024-02-25 02:13:51','2024-02-25 02:13:51','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|tablet\" admin_label=\"Header\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px|0px|1px||false|false\" custom_padding_tablet=\"0px||12vw||false|false\" custom_padding_phone=\"0px||20vw||false|false\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"-15vw\" box_shadow_vertical=\"0px\" box_shadow_color=\"#1b1d20\" box_shadow_horizontal_tablet=\"0vw\" box_shadow_horizontal_phone=\"0vw\" box_shadow_horizontal_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.22.0\" max_width=\"1180px\" custom_margin=\"||80px||false|false\" custom_padding=\"12vw|50px|0px|50px|false|true\" custom_padding_tablet=\"12vw||||false|true\" custom_padding_phone=\"20vw||||false|false\" hover_enabled=\"0\" border_color_all=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" border_width_left=\"2px\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22border_color_all%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" header_font=\"Oswald|500||on|||||\" header_font_size=\"140px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_font_size=\"24px\" background_layout=\"dark\" max_width=\"800px\" hover_enabled=\"0\" header_font_size_tablet=\"80px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"16px\" header_4_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4><span style=\"color: #000000;\">Welcome to Monas Lagoon Tours</span></h4>\n<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.16\" background_color=\"#1b1d20\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_3_font=\"Merriweather||||||||\" header_3_font_size=\"24px\" header_3_line_height=\"1.8em\" background_layout=\"dark\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Offering bespoke experiences tailored to families and groups of friends. Wether you want to ditch the crowds or just want to decide where to go in the lagoon, we\'ve got what you need.</h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\" sticky_enabled=\"0\" background_position=\"top_center\" background_vertical_offset=\"33%\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Greetings and a warm Kia Orana!</p>\n<p>Welcome aboard Mona\'s Lagoon Charter &amp; Water Taxi, where we are delighted to introduce you to the wonders of Aitutaki\'s pristine paradise.</p>\n<p>Dan &amp; Lo, Proud Aitutaki Locals started Mona\'s Lagoon Tours. Having grown up in and on the lagoon and working for tourism operators, it only made sense to dive into a business which encorporates their love for their homeland and being able to deliver incredible customer service for visitors. </p>\n<p>Allow us to accompany you on an unforgettable journey, immersing you in the unparalleled beauty of Aitutaki\'s Lagoon and its charming islets. From snorkeling with majestic trevallys to marveling at the kaleidoscope of colorful clams and encountering turtles throughout your excursion, every moment promises to be extraordinary. Feel the soft sands beneath your feet as we explore the tranquil beaches of our secluded islands. </p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" background_color=\"#efefef\" custom_padding=\"120px||120px||true|\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-3.jpg\" _builder_version=\"4.22.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (3)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" text_font=\"|600|||||||\" text_line_height=\"1.8em\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"80px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_line_height=\"1.4em\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" hover_enabled=\"0\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"35px\" header_2_font_size_last_edited=\"on|phone\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"14px\" header_4_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4>Gallery</h4>\n<h2>Become Part of Our story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592594391.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592594391\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632594213.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1688632594213\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670-scaled.jpeg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"IMG_2670\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592608347\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Discover the brewing process</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','179-revision-v1','','','2024-02-25 02:13:51','2024-02-25 02:13:51','',179,'https://hausofskai-wip.com/moanalagooncharters/?p=212',0,'revision','',0),(213,1,'2024-02-25 02:14:13','2024-02-25 02:14:13','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|tablet\" admin_label=\"Header\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px|0px|1px||false|false\" custom_padding_tablet=\"0px||12vw||false|false\" custom_padding_phone=\"0px||20vw||false|false\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"-15vw\" box_shadow_vertical=\"0px\" box_shadow_color=\"#1b1d20\" box_shadow_horizontal_tablet=\"0vw\" box_shadow_horizontal_phone=\"0vw\" box_shadow_horizontal_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.22.0\" max_width=\"1180px\" custom_margin=\"||80px||false|false\" custom_padding=\"12vw|50px|0px|50px|false|true\" custom_padding_tablet=\"12vw||||false|true\" custom_padding_phone=\"20vw||||false|false\" hover_enabled=\"0\" border_color_all=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" border_width_left=\"2px\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22border_color_all%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" header_font=\"Oswald|500||on|||||\" header_font_size=\"140px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_font_size=\"24px\" background_layout=\"dark\" max_width=\"800px\" hover_enabled=\"0\" header_font_size_tablet=\"80px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"16px\" header_4_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4><span style=\"color: #000000;\">Welcome to Monas Lagoon Tours</span></h4>\n<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.16\" background_color=\"#1b1d20\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_3_font=\"Merriweather||||||||\" header_3_font_size=\"24px\" header_3_line_height=\"1.8em\" background_layout=\"dark\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Offering bespoke experiences tailored to families and groups of friends. Wether you want to ditch the crowds or just want to decide where to go in the lagoon, we\'ve got what you need.</h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\" sticky_enabled=\"0\" background_position=\"top_center\" background_vertical_offset=\"33%\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Greetings and a warm Kia Orana!</p>\n<p>Welcome aboard Mona\'s Lagoon Charter &amp; Water Taxi, where we are delighted to introduce you to the wonders of Aitutaki\'s pristine paradise.</p>\n<p>Dan &amp; Lo, Proud Aitutaki Locals started Mona\'s Lagoon Tours. Having grown up in and on the lagoon and working for tourism operators, it only made sense to dive into a business which encorporates their love for their homeland and being able to deliver incredible customer service for visitors. </p>\n<p>Allow us to accompany you on an unforgettable journey, immersing you in the unparalleled beauty of Aitutaki\'s Lagoon and its charming islets. From snorkeling with majestic trevallys to marveling at the kaleidoscope of colorful clams and encountering turtles throughout your excursion, every moment promises to be extraordinary. Feel the soft sands beneath your feet as we explore the tranquil beaches of our secluded islands. </p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" background_color=\"#efefef\" custom_padding=\"120px||120px||true|\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-3.jpg\" _builder_version=\"4.22.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (3)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" text_font=\"|600|||||||\" text_line_height=\"1.8em\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"80px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_line_height=\"1.4em\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" hover_enabled=\"0\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"35px\" header_2_font_size_last_edited=\"on|phone\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"14px\" header_4_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4>Gallery</h4>\n<h2>Become Part of Our story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592594391.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592594391\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632594213.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1688632594213\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670-scaled.jpeg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"IMG_2670\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592608347\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','179-revision-v1','','','2024-02-25 02:14:13','2024-02-25 02:14:13','',179,'https://hausofskai-wip.com/moanalagooncharters/?p=213',0,'revision','',0),(214,1,'2024-02-25 02:15:09','2024-02-25 02:15:09','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|tablet\" admin_label=\"Header\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px|0px|1px||false|false\" custom_padding_tablet=\"0px||12vw||false|false\" custom_padding_phone=\"0px||20vw||false|false\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"-15vw\" box_shadow_vertical=\"0px\" box_shadow_color=\"#1b1d20\" box_shadow_horizontal_tablet=\"0vw\" box_shadow_horizontal_phone=\"0vw\" box_shadow_horizontal_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.22.0\" max_width=\"1180px\" custom_margin=\"||80px||false|false\" custom_padding=\"12vw|50px|0px|50px|false|true\" custom_padding_tablet=\"12vw||||false|true\" custom_padding_phone=\"20vw||||false|false\" hover_enabled=\"0\" border_color_all=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" border_width_left=\"2px\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22border_color_all%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" header_font=\"Oswald|500||on|||||\" header_font_size=\"140px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_font_size=\"24px\" background_layout=\"dark\" max_width=\"800px\" hover_enabled=\"0\" header_font_size_tablet=\"80px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"16px\" header_4_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4><span style=\"color: #000000;\">Welcome to Monas Lagoon Tours</span></h4>\n<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.16\" background_color=\"#1b1d20\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_3_font=\"Merriweather||||||||\" header_3_font_size=\"24px\" header_3_line_height=\"1.8em\" background_layout=\"dark\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Offering bespoke experiences tailored to families and groups of friends. Wether you want to ditch the crowds or just want to decide where to go in the lagoon, we\'ve got what you need.</h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\" sticky_enabled=\"0\" background_position=\"top_center\" background_vertical_offset=\"33%\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Greetings and a warm Kia Orana!</p>\n<p>Welcome aboard Mona\'s Lagoon Charter &amp; Water Taxi, where we are delighted to introduce you to the wonders of Aitutaki\'s pristine paradise.</p>\n<p>Dan &amp; Lo, Proud Aitutaki Locals started Mona\'s Lagoon Tours. Having grown up in and on the lagoon and working for tourism operators, it only made sense to dive into a business which encorporates their love for their homeland and being able to deliver incredible customer service for visitors. </p>\n<p>Allow us to accompany you on an unforgettable journey, immersing you in the unparalleled beauty of Aitutaki\'s Lagoon and its charming islets. From snorkeling with majestic trevallys to marveling at the kaleidoscope of colorful clams and encountering turtles throughout your excursion, every moment promises to be extraordinary. Feel the soft sands beneath your feet as we explore the tranquil beaches of our secluded islands. </p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" background_color=\"#efefef\" custom_padding=\"17px||17px||true|\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-3.jpg\" _builder_version=\"4.22.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (3)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" text_font=\"|600|||||||\" text_line_height=\"1.8em\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"80px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" header_4_line_height=\"1.4em\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" hover_enabled=\"0\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"35px\" header_2_font_size_last_edited=\"on|phone\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"14px\" header_4_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22header_4_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4>Gallery</h4>\n<h2>Become Part of Our story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592594391.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592594391\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632594213.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1688632594213\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670-scaled.jpeg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"IMG_2670\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592608347\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','179-revision-v1','','','2024-02-25 02:15:09','2024-02-25 02:15:09','',179,'https://hausofskai-wip.com/moanalagooncharters/?p=214',0,'revision','',0),(215,1,'2024-02-25 02:15:46','2024-02-25 02:15:46','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|tablet\" admin_label=\"Header\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px|0px|1px||false|false\" custom_padding_tablet=\"0px||12vw||false|false\" custom_padding_phone=\"0px||20vw||false|false\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"-15vw\" box_shadow_vertical=\"0px\" box_shadow_color=\"#1b1d20\" box_shadow_horizontal_tablet=\"0vw\" box_shadow_horizontal_phone=\"0vw\" box_shadow_horizontal_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.22.0\" max_width=\"1180px\" custom_margin=\"||80px||false|false\" custom_padding=\"12vw|50px|0px|50px|false|true\" custom_padding_tablet=\"12vw||||false|true\" custom_padding_phone=\"20vw||||false|false\" hover_enabled=\"0\" border_color_all=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" border_width_left=\"2px\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22border_color_all%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" header_font=\"Oswald|500||on|||||\" header_font_size=\"140px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_font_size=\"24px\" background_layout=\"dark\" max_width=\"800px\" hover_enabled=\"0\" header_font_size_tablet=\"80px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"16px\" header_4_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4></h4>\n<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.16\" background_color=\"#1b1d20\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_3_font=\"Merriweather||||||||\" header_3_font_size=\"24px\" header_3_line_height=\"1.8em\" background_layout=\"dark\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Offering bespoke experiences tailored to families and groups of friends. Wether you want to ditch the crowds or just want to decide where to go in the lagoon, we\'ve got what you need.</h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\" sticky_enabled=\"0\" background_position=\"top_center\" background_vertical_offset=\"33%\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Greetings and a warm Kia Orana!</p>\n<p>Welcome aboard Mona\'s Lagoon Charter &amp; Water Taxi, where we are delighted to introduce you to the wonders of Aitutaki\'s pristine paradise.</p>\n<p>Dan &amp; Lo, Proud Aitutaki Locals started Mona\'s Lagoon Tours. Having grown up in and on the lagoon and working for tourism operators, it only made sense to dive into a business which encorporates their love for their homeland and being able to deliver incredible customer service for visitors. </p>\n<p>Allow us to accompany you on an unforgettable journey, immersing you in the unparalleled beauty of Aitutaki\'s Lagoon and its charming islets. From snorkeling with majestic trevallys to marveling at the kaleidoscope of colorful clams and encountering turtles throughout your excursion, every moment promises to be extraordinary. Feel the soft sands beneath your feet as we explore the tranquil beaches of our secluded islands. </p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" background_color=\"#efefef\" custom_padding=\"17px||17px||true|\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-3.jpg\" _builder_version=\"4.22.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (3)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" text_font=\"|600|||||||\" text_line_height=\"1.8em\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"80px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" header_4_line_height=\"1.4em\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" hover_enabled=\"0\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"35px\" header_2_font_size_last_edited=\"on|phone\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"14px\" header_4_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22header_4_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4>Gallery</h4>\n<h2>Become Part of Our story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592594391.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592594391\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632594213.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1688632594213\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670-scaled.jpeg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"IMG_2670\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592608347\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','179-revision-v1','','','2024-02-25 02:15:46','2024-02-25 02:15:46','',179,'https://hausofskai-wip.com/moanalagooncharters/?p=215',0,'revision','',0),(216,1,'2024-02-25 02:16:29','2024-02-25 02:16:29','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|tablet\" admin_label=\"Header\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px|0px|1px||false|false\" custom_padding_tablet=\"0px||12vw||false|false\" custom_padding_phone=\"0px||20vw||false|false\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"-15vw\" box_shadow_vertical=\"0px\" box_shadow_color=\"#1b1d20\" box_shadow_horizontal_tablet=\"0vw\" box_shadow_horizontal_phone=\"0vw\" box_shadow_horizontal_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.22.0\" max_width=\"1180px\" custom_margin=\"||80px||false|false\" custom_padding=\"12vw|50px|0px|50px|false|true\" custom_padding_tablet=\"12vw||||false|true\" custom_padding_phone=\"20vw||||false|false\" hover_enabled=\"0\" border_color_all=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" border_width_left=\"2px\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22border_color_all%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" header_font=\"Oswald|500||on|||||\" header_font_size=\"140px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_font_size=\"24px\" background_layout=\"dark\" max_width=\"800px\" hover_enabled=\"0\" header_font_size_tablet=\"80px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"16px\" header_4_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4></h4>\n<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.16\" background_color=\"#1b1d20\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_3_font=\"Merriweather||||||||\" header_3_font_size=\"24px\" header_3_line_height=\"1.8em\" background_layout=\"dark\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Offering bespoke experiences tailored to families and groups of friends. Wether you want to ditch the crowds or just want to decide where to go in the lagoon, we\'ve got what you need.</h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\" sticky_enabled=\"0\" background_position=\"top_center\" background_vertical_offset=\"33%\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Greetings and a warm Kia Orana!</p>\n<p>Welcome aboard Mona\'s Lagoon Charter &amp; Water Taxi, where we are delighted to introduce you to the wonders of Aitutaki\'s pristine paradise.</p>\n<p>Dan &amp; Lo, Proud Aitutaki Locals started Mona\'s Lagoon Tours. Having grown up in and on the lagoon and working for tourism operators, it only made sense to dive into a business which encorporates their love for their homeland and being able to deliver incredible customer service for visitors. </p>\n<p>Allow us to accompany you on an unforgettable journey, immersing you in the unparalleled beauty of Aitutaki\'s Lagoon and its charming islets. From snorkeling with majestic trevallys to marveling at the kaleidoscope of colorful clams and encountering turtles throughout your excursion, every moment promises to be extraordinary. Feel the soft sands beneath your feet as we explore the tranquil beaches of our secluded islands. </p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" background_color=\"#efefef\" custom_padding=\"17px||17px||true|\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-3.jpg\" _builder_version=\"4.22.0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (3)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (2)\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.22.0\" text_font=\"|600|||||||\" text_line_height=\"1.8em\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"80px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" header_4_line_height=\"1.4em\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" hover_enabled=\"0\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"35px\" header_2_font_size_last_edited=\"on|phone\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"14px\" header_4_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22header_4_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h4>Gallery</h4>\n<h2>Become Part of Our story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592594391.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592594391\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632594213.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1688632594213\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670-scaled.jpeg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"IMG_2670\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" _builder_version=\"4.22.0\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"FB_IMG_1696592608347\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"caption (1)\" sticky_enabled=\"0\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','inherit','closed','closed','','179-revision-v1','','','2024-02-25 02:16:29','2024-02-25 02:16:29','',179,'https://hausofskai-wip.com/moanalagooncharters/?p=216',0,'revision','',0),(217,1,'2024-02-25 02:18:06','2024-02-25 02:18:06','[et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','Footer','','publish','closed','closed','','footer','','','2024-02-25 02:18:06','2024-02-25 02:18:06','',0,'https://hausofskai-wip.com/moanalagooncharters/et_pb_layout/footer/',0,'et_pb_layout','',0),(218,1,'2024-02-25 02:18:20','2024-02-25 02:18:20','[et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" background_position=\"top_center\" background_vertical_offset=\"33%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" locked=\"off\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<p>Greetings and a warm Kia Orana!</p>\n<p>Welcome aboard Mona\'s Lagoon Charter &amp; Water Taxi, where we are delighted to introduce you to the wonders of Aitutaki\'s pristine paradise.</p>\n<p>Dan &amp; Lo, Proud Aitutaki Locals started Mona\'s Lagoon Tours. Having grown up in and on the lagoon and working for tourism operators, it only made sense to dive into a business which encorporates their love for their homeland and being able to deliver incredible customer service for visitors. </p>\n<p>Allow us to accompany you on an unforgettable journey, immersing you in the unparalleled beauty of Aitutaki\'s Lagoon and its charming islets. From snorkeling with majestic trevallys to marveling at the kaleidoscope of colorful clams and encountering turtles throughout your excursion, every moment promises to be extraordinary. Feel the soft sands beneath your feet as we explore the tranquil beaches of our secluded islands. </p>[/et_pb_text][/et_pb_column][/et_pb_section]','Mid Section Image','','publish','closed','closed','','mid-section-image','','','2024-02-25 02:18:20','2024-02-25 02:18:20','',0,'https://hausofskai-wip.com/moanalagooncharters/et_pb_layout/mid-section-image/',0,'et_pb_layout','',0),(219,1,'2024-02-25 02:23:56','2024-02-25 02:23:56','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_image=\"off\" width=\"100%\" max_width=\"none\" custom_padding=\"15vw|10%|15vw|10%|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"c2806eab-1ab1-4c1b-aa36-0e6a1ee19781\" header_text_color=\"#000000\" width=\"60%\" custom_margin=\"||10px||false|false\" header_font_size_tablet=\"5vw\" header_font_size_phone=\"5vw\" header_font_size_last_edited=\"off|phone\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">explore the wonders of aitutaki lagoon</span></h1>[/et_pb_text][et_pb_button button_text=\"Book now\" _builder_version=\"4.22.0\" _module_preset=\"9f356325-262b-433a-8486-c05bab520798\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22box_shadow_color%22,%22box_shadow_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/12.png\" title_text=\"12\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Private charters</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>Escape the crowds and immerse yourself in an atmosphere of exclusivity. With a private vessel at your disposal, you have the freedom to explore the p\'Lagoon at your own pace, away from the hustle and bustle of larger tour groups.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>Water Taxi </h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>Whether you\'re embarking on a day of adventure or simply need to reach your destination quickly and efficiently, our Water Taxi service offers unparalleled convenience. With multiple pickup and drop-off locations available, we ensure seamless connectivity to your desired destinations.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/11.png\" title_text=\"11\" align=\"center\" _builder_version=\"4.22.0\" _module_preset=\"default\" width=\"50%\" module_alignment=\"center\" custom_margin=\"||-23px|||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"186324f1-6501-4953-948a-edc279b6232c\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h4>lagoon tours</h4>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_orientation=\"center\" global_colors_info=\"{}\"]<p><span>At Mona Lagoon Cruise, we\'re committed to preserving the natural beauty and ecological integrity of our Lagoon. Our Lagoon Tours prioritize responsible tourism practices, ensuring minimal impact on the environment while maximizing your enjoyment of this pristine paradise.</span></p>[/et_pb_text][et_pb_button button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#000000\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" title_text=\"图像 (8)\" _builder_version=\"4.22.0\" _module_preset=\"default\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>swim with giant trevally</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>lagoon tours</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Approach\" _builder_version=\"4.22.1\" _module_preset=\"default\" overflow-x=\"hidden\" overflow-y=\"hidden\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"3_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688633442222.jpg\" title_text=\"FB_IMG_1688633442222\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"643px\" custom_margin=\"|-40%|-40%||false|false\" custom_margin_tablet=\"|0%|0%||false|false\" custom_margin_phone=\"|0%|0%||false|false\" custom_margin_last_edited=\"on|tablet\" scroll_horizontal_motion_enable=\"on\" scroll_horizontal_motion=\"0|50|50|100|-0.5|0|0.5\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_enable_color=\"off\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"40px|40px|40px|40px|true|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_phone=\"20px|20px|20px|20px|true|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"00643d84-dcae-41a8-8e70-96036a3cce67\" header_2_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h2>explore picturesque motus</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"b96d578c-62ca-4f8d-905b-a9230de35875\" header_6_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<h6>Private charter</h6>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"83b8f15e-b35a-47db-a664-86b0f6c92d95\" text_text_color=\"#FFFFFF\" locked=\"off\" global_colors_info=\"{}\"]<p>Get up close and personal with the abundance of sea life in our beautiful lagoon. Book a Lagoon Tour or Private charter to swim with the Giant Trevally.</p>[/et_pb_text][et_pb_button button_text=\"Book Now\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-8.jpeg\" background_position=\"top_right\" background_vertical_offset=\"65%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"图像 (8)\" background_horizontal_offset=\"-12%\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>&nbsp;</p>\n<p>Dan &amp; Lo, Proud Aitutaki Locals started Mona\'s Lagoon Tours. Having grown up in and on the lagoon and working for tourism operators, it only made sense to dive into a business which incorporates their love for their homeland and being able to deliver incredible customer service for visitors. </p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_text=\"about us\" _builder_version=\"4.22.0\" _module_preset=\"fcf89dcd-b5d9-4fed-b3b6-c38b27e0f524\" button_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" hover_enabled=\"0\" box_shadow_horizontal=\"3px\" box_shadow_blur=\"5px\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{%22gcid-aa58ace8-f27f-4d3e-bff4-606cd9606937%22:%91%22box_shadow_color%22,%22box_shadow_color%22,%22box_shadow_color%22%93,%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22button_text_color%22%93}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_enable_color=\"off\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][trustindex no-registration=tripadvisor][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-25 02:23:56','2024-02-25 02:23:56','',9,'https://hausofskai-wip.com/moanalagooncharters/?p=219',0,'revision','',0),(220,1,'2024-02-25 03:37:14','2024-02-25 03:37:14','{\n    \"et_divi[primary_nav_font_style]\": {\n        \"value\": \"uppercase\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-25 03:36:12\"\n    },\n    \"et_divi[menu_link_active]\": {\n        \"value\": \"#50b2aa\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-25 03:37:11\"\n    },\n    \"et_divi[primary_nav_dropdown_line_color]\": {\n        \"value\": \"#50b2aa\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-25 03:37:14\"\n    }\n}','','','trash','closed','closed','','faafa798-d44e-4a14-980c-71230b2b1eda','','','2024-02-25 03:37:14','2024-02-25 03:37:14','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=220',0,'customize_changeset','',0),(221,1,'2024-02-25 03:37:45','2024-02-25 03:37:45','{\n    \"et_divi[logo_height]\": {\n        \"value\": \"100\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-25 03:37:45\"\n    },\n    \"et_divi[primary_nav_bg]\": {\n        \"value\": \"#000000\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-25 03:37:45\"\n    }\n}','','','trash','closed','closed','','d900449a-8a25-4a5a-8e7c-89280efaeab6','','','2024-02-25 03:37:45','2024-02-25 03:37:45','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/25/d900449a-8a25-4a5a-8e7c-89280efaeab6/',0,'customize_changeset','',0),(222,1,'2024-02-25 03:38:02','2024-02-25 03:38:02','{\n    \"et_divi[show_search_icon]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-02-25 03:38:02\"\n    }\n}','','','trash','closed','closed','','ebf715dd-7e0a-4a6f-9d81-d2fca7a1ce78','','','2024-02-25 03:38:02','2024-02-25 03:38:02','',0,'https://hausofskai-wip.com/moanalagooncharters/2024/02/25/ebf715dd-7e0a-4a6f-9d81-d2fca7a1ce78/',0,'customize_changeset','',0),(224,1,'2024-03-05 00:55:22','2024-03-05 00:55:22','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"off|tablet\" admin_label=\"Header\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px|0px|1px||false|false\" custom_padding_tablet=\"0px||12vw||false|false\" custom_padding_phone=\"0px||20vw||false|false\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"-15vw\" box_shadow_vertical=\"0px\" box_shadow_color=\"#1b1d20\" box_shadow_horizontal_tablet=\"0vw\" box_shadow_horizontal_phone=\"0vw\" box_shadow_horizontal_last_edited=\"on|tablet\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.22.0\" max_width=\"1180px\" custom_margin=\"||80px||false|false\" custom_padding=\"12vw|50px|0px|50px|false|true\" custom_padding_tablet=\"12vw||||false|true\" custom_padding_phone=\"20vw||||false|false\" border_color_all=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" border_width_left=\"2px\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22border_color_all%22%93}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" header_font=\"Oswald|500||on|||||\" header_font_size=\"140px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"#e94558\" header_4_font_size=\"24px\" background_layout=\"dark\" max_width=\"800px\" header_font_size_tablet=\"80px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|desktop\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"16px\" header_4_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h4></h4>\n<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.16\" background_color=\"#1b1d20\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_3_font=\"Merriweather||||||||\" header_3_font_size=\"24px\" header_3_line_height=\"1.8em\" background_layout=\"dark\" header_3_font_size_tablet=\"20px\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h3>Offering bespoke experiences tailored to families and groups of friends. Wether you want to ditch the crowds or just want to decide where to go in the lagoon, we\'ve got what you need.</h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|tablet\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" admin_label=\"Stats\" _builder_version=\"4.22.0\" background_color=\"#efefef\" use_background_color_gradient=\"on\" background_color_gradient_type=\"circular\" background_color_gradient_direction_radial=\"top left\" background_color_gradient_stops=\"rgba(239,239,239,0.55) 20%|#efefef 60%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(239,239,239,0.55)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"#efefef\" background_color_gradient_end_position=\"60%\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" background_position=\"top_center\" background_vertical_offset=\"33%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"200px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" header_font=\"Oswald|500||on|||||\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"100px\" header_2_line_height=\"1.2em\" header_3_font=\"Oswald|500||on|||||\" header_4_font=\"Oswald|500||on|||||\" header_5_font=\"Oswald|500||on|||||\" header_6_font=\"Oswald|500||on|||||\" max_width=\"600px\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"30px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h2>proudly local</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" text_font=\"Merriweather||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" text_font_size_tablet=\"15px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>Greetings and a warm Kia Orana!</p>\n<p>Welcome aboard Mona\'s Lagoon Charter &amp; Water Taxi, where we are delighted to introduce you to the wonders of Aitutaki\'s pristine paradise.</p>\n<p>Step into the heart of Aitutaki\'s paradise with Mona\'s Lagoon Charter &amp; Water Taxi, a family-run business born from the love of our island home. It all began with Mum and Dad, Teremoana and Noo, who started out running a simple water taxi service. When they moved to Samoa, they handed over the reins to us, Dan &amp; Lo, their adventurous offspring. Eager to carry on their legacy and add our own flair, we\'ve been busy sprucing things up with a fresh name, a vibrant logo, and a whole lot of passion.</p>\n<p>But for us, it\'s not just about business – it\'s about family, community, and sharing the wonders of Aitutaki with the world. We\'re taking things slow and steady, focusing on growth that benefits not only our own kin but also our beloved island community. Every excursion with us is a chance to experience the genuine warmth and hospitality of Aitutaki, where the turquoise waters teem with life and the soft sands beckon you to relax and unwind. So come on board, join our family, and let\'s create unforgettable memories together amidst the breathtaking beauty of Mona\'s Lagoon.</p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gallery\" _builder_version=\"4.16\" background_color=\"#efefef\" custom_padding=\"17px||17px||true|\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-3.jpg\" title_text=\"caption (3)\" _builder_version=\"4.22.0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-2.jpg\" title_text=\"caption (2)\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" text_font=\"|600|||||||\" text_line_height=\"1.8em\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"80px\" header_4_font=\"Merriweather||||||||\" header_4_text_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" header_4_line_height=\"1.4em\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" header_2_font_size_tablet=\"60px\" header_2_font_size_phone=\"35px\" header_2_font_size_last_edited=\"on|phone\" header_4_font_size_tablet=\"20px\" header_4_font_size_phone=\"14px\" header_4_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22header_4_text_color%22%93}\"]<h4>Gallery</h4>\n<h2>Become Part of Our story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption.jpg\" title_text=\"caption\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592594391.jpg\" title_text=\"FB_IMG_1696592594391\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1688632594213.jpg\" title_text=\"FB_IMG_1688632594213\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_2670-scaled.jpeg\" title_text=\"IMG_2670\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/FB_IMG_1696592608347.jpg\" title_text=\"FB_IMG_1696592608347\" _builder_version=\"4.22.0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.22.0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"64deg\" background_color_gradient_stops=\"rgba(0,0,0,0.7) 24%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.7)\" background_color_gradient_start_position=\"24%\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/caption-1.jpg\" custom_padding=\"0px||50px||false|false\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.16\" custom_margin=\"4px|auto|4px|auto|true|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_2_font=\"Oswald|500||on|||||\" header_2_font_size=\"60px\" header_2_line_height=\"1.2em\" background_layout=\"dark\" header_2_font_size_tablet=\"40px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" global_colors_info=\"{}\"]<h2>Aitutaki lagoon like you\'ve never seen before</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Muli||||||||\" link_font=\"Roboto||||||||\" link_text_align=\"left\" link_text_color=\"#ffffff\" link_line_height=\"2.5em\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Sitemap</h4>\n<p><a href=\"#\">Lorem ipsum dolor</a><br /> <a href=\"#\">sit amet consectetur</a><br /> <a href=\"#\">adipiscing elit</a><br /> <a href=\"#\">sed do eiusmod tempor</a><br /> <a href=\"#\">incididunt ut labore</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_4_font=\"Oswald|500||on|||||\" header_4_text_color=\"rgba(255,255,255,0.5)\" header_4_font_size=\"14px\" header_4_line_height=\"1.4em\" background_layout=\"dark\" max_width=\"600px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Social</h4>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" border_radii=\"on|50px|50px|50px|50px\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.16\" background_color=\"rgba(255,255,255,0.2)\" background_enable_color=\"on\" custom_padding=\"5px|5px|5px|5px|true|true\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','inherit','closed','closed','','179-revision-v1','','','2024-03-05 00:55:22','2024-03-05 00:55:22','',179,'https://hausofskai-wip.com/moanalagooncharters/?p=224',0,'revision','',0),(225,1,'2024-03-12 22:21:07','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-03-12 22:21:07','0000-00-00 00:00:00','',0,'https://hausofskai-wip.com/moanalagooncharters/?p=225',0,'post','',0),(226,1,'2024-03-12 22:24:44','2024-03-12 22:24:44','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" locked=\"off\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"d674f17b-3628-435f-94a3-cd5f46b9d033\" header_text_color=\"#000000\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">Pricing</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Pricing\" _builder_version=\"4.22.1\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h5>Water Taxi</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" global_colors_info=\"{}\"]<h2>$80 Adult<br />$40 Child*</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Includes Drop Off &amp; Pick Up</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Islet of your choice ( Motu ) </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>*Children 6-12yrs</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"349ef676-0dc8-4f6a-8211-812ee2f3e626\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" custom_margin=\"30px||||false|false\" box_shadow_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22%93}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{%22gcid-d854bc45-6b1b-46fa-ad03-7e3d21f97aec%22:%91%22background_color%22%93}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h5>Half Day Private Charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<h2>$400 per couple</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Additional $50 per Child (6-12 yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>3.5hr tour - 2 time slots available</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#FFFFFF\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Includes light fruit refreshments</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" box_shadow_color=\"#000000\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"60px|40px|60px|40px|true|true\" custom_padding_tablet=\"40px|30px|40px|30px|true|true\" custom_padding_phone=\"30px||30px||true|true\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"708c43cb-a336-4f70-a80d-3cb3d6a46f03\" header_5_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h5>full day private charter</h5>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"356adae1-32a8-4115-b8a5-8ed0e27a0c6f\" header_2_text_color=\"gcid-0a41bebc-0107-48f7-8173-6190cad71074\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22header_2_text_color%22%93}\"]<h2><span style=\"color: #edf000;\">$650 per couple</span></h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Additional $100 per extra adult</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Additional $50 per Child (6-12yrs)</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>6hr tour</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" icon_color=\"#EDF000\" _builder_version=\"4.22.0\" _module_preset=\"6531be83-4669-4f5f-b201-fcdbad7052c1\" body_text_color=\"#FFFFFF\" custom_margin=\"||10px||false|false\" custom_padding=\"||||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Includes BBQ Lunch</p>[/et_pb_blurb][et_pb_button button_text=\"See full details\" _builder_version=\"4.22.0\" _module_preset=\"d2a12ef6-278e-44ed-8514-bb2f2133e927\" button_bg_color=\"#EDF000\" custom_margin=\"30px||||false|false\" box_shadow_color=\"#FFFFFF\" global_colors_info=\"{%22gcid-0a41bebc-0107-48f7-8173-6190cad71074%22:%91%22button_bg_color%22,%22button_bg_color%22%93}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"4.22.0\" _module_preset=\"default\" background_color=\"#EDF000\" background_enable_image=\"off\" background_enable_pattern_style=\"on\" background_pattern_style=\"waves\" background_pattern_color=\"rgba(0,0,0,0.03)\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"bd8161b9-8c84-401a-830e-388346bc15c8\" header_2_text_color=\"#000000\" text_orientation=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"]<h2>Book A tour</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"6a1c1e72-6780-430f-832d-659bf4b27bec\" text_text_color=\"#000000\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>Ready to book? Click below to secure your booking.</p>[/et_pb_text][et_pb_button button_url=\"https://lorinamataiti.setmore.com/lorinamataiti\" url_new_window=\"on\" button_text=\"Book Now\" button_alignment=\"center\" _builder_version=\"4.22.0\" _module_preset=\"eaccb100-59be-44f1-ba38-b6b438925085\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" box_shadow_color=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Prices','','inherit','closed','closed','','135-revision-v1','','','2024-03-12 22:24:44','2024-03-12 22:24:44','',135,'https://hausofskai-wip.com/moanalagooncharters/?p=226',0,'revision','',0),(227,1,'2024-03-12 22:25:28','2024-03-12 22:25:28','[et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"4.22.0\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"95bcb655-38ea-4072-a99d-2ebec6f03a06\" locked=\"off\" global_colors_info=\"{}\"]<h1>services</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_divider _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Water Taxi</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\"]<p><span>Discover Aitutaki\'s hidden gems with ease aboard Monas Water Taxi. Glide effortlessly across the crystalline waters of the lagoon, escaping the crowds and accessing secluded spots inaccessible by land. With personalized service and expert local guides, Monas ensures a tailored experience, whether you\'re seeking pristine beaches, vibrant coral reefs for snorkeling, or panoramic views of Aitutaki\'s stunning landscapes.</span></p>\n<p><strong>Prices:</strong><br /><span>$80 per adult <br />$40 per child 8 to 12 years<br /></span></p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Drop Off &amp; Pick Up </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Flexibility on times</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Half day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\"]<p><strong>3.5 hr Duration<br /></strong><span>Two Time Slots : <br /><strong>9am - 12.30pm | 1pm - 4.30pm</strong><br />This tour includes: <br />* light fruit refreshments</span><br /><span>* water </span><br /><span>*coconut Juice </span><br /><span>* towels</span><br /><span>*hotel transfers</span><br /><span>*flippers</span><br /><span>*2-3 snorkeling stops</span><br /><span>*2 island hopping</span><br /><span>Tour can be adjusted to your requests.</span><br /><span>MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.</span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Light Fruit Refreshments</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_margin=\"|580px||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Full day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\"]<p><strong>6 hr Duration</strong><span><br /><strong>10am - 4pm</strong><br /> (times can be adjusted suitable to your needs). Tour can be adjusted to your requests...<br /><strong>This tour includes:</strong> <br />*BBQ lunch ( available options are t-boned chicken, fish and sausages).<br />*light fruit refreshments <br />*Water<br />* coconut juice<br />* towels<br />*accommodation transfers<br />*flippers<br />* 3-4 snorkeling stops<br />*2-3 island hopping <br />MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.<br /></span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>BBQ Lunch</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','121-revision-v1','','','2024-03-12 22:25:28','2024-03-12 22:25:28','',121,'https://hausofskai-wip.com/moanalagooncharters/?p=227',0,'revision','',0),(228,1,'2024-03-12 22:26:28','2024-03-12 22:26:28','[et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"4.22.0\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.23.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"95bcb655-38ea-4072-a99d-2ebec6f03a06\" locked=\"off\" global_colors_info=\"{}\"]<h1>services</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_divider _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Water Taxi</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\"]<p><span>Discover Aitutaki\'s hidden gems with ease aboard Monas Water Taxi. Glide effortlessly across the crystalline waters of the lagoon, escaping the crowds and accessing secluded spots inaccessible by land. With personalized service and expert local guides, Monas ensures a tailored experience, whether you\'re seeking pristine beaches, vibrant coral reefs for snorkeling, or panoramic views of Aitutaki\'s stunning landscapes.</span></p>\n<p><strong>Prices:</strong><br /><span>$80 per adult <br />$40 per child 8 to 12 years<br /></span></p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Drop Off &amp; Pick Up </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Flexibility on times</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Half day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" custom_margin=\"|||24px||\"]<p><strong>3.5 hr Duration<br /></strong><span>Two Time Slots : <br /><strong>9am - 12.30pm | 1pm - 4.30pm</strong><br />This tour includes: <br />* light fruit refreshments</span><br /><span>* water </span><br /><span>*coconut Juice </span><br /><span>* towels</span><br /><span>*hotel transfers</span><br /><span>*flippers</span><br /><span>*2-3 snorkeling stops</span><br /><span>*2 island hopping</span><br /><span>Tour can be adjusted to your requests.</span><br /><span>MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.</span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Light Fruit Refreshments</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" custom_margin=\"|580px||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.2\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Full day private charter</h2>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"4248a975-44b9-413a-8b65-20de629807e0\" global_colors_info=\"{}\" custom_padding=\"|||23px||\"]<p><strong>6 hr Duration</strong><span><br /><strong>10am - 4pm</strong><br /> (times can be adjusted suitable to your needs). Tour can be adjusted to your requests...<br /><strong>This tour includes:</strong> <br />*BBQ lunch ( available options are t-boned chicken, fish and sausages).<br />*light fruit refreshments <br />*Water<br />* coconut juice<br />* towels<br />*accommodation transfers<br />*flippers<br />* 3-4 snorkeling stops<br />*2-3 island hopping <br />MUST PROVIDE OWN SNORKELING MASKS &amp; SNORKELS.<br /></span></p>[/et_pb_text][et_pb_button button_text=\"enquire \" _builder_version=\"4.22.0\" _module_preset=\"9d63bafa-f665-4771-8f65-2ea9fe6d5cef\" button_bg_color=\"#EDF000\" button_border_color=\"#FFFFFF\" box_shadow_color=\"#000000\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"f60fcf56-d3eb-4d84-ba8b-39fa4ec7e8af\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 style=\"text-align: left;\">Inclusions</h2>[/et_pb_text][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Hotel Transfers</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Choose where to go </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.0\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>BBQ Lunch</p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Privacy </p>[/et_pb_blurb][et_pb_blurb use_icon=\"on\" font_icon=\"&#xf00c;||fa||900\" _builder_version=\"4.22.1\" _module_preset=\"364e02b8-a0b2-4193-9ccd-33aac0835d30\" custom_margin=\"||10px||false|false\" locked=\"off\" global_colors_info=\"{}\"]<p>Subject to availability</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_3593-scaled.jpeg\" title_text=\"IMG_3593\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"208px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/图像-6.jpeg\" title_text=\"图像 (6)\" _builder_version=\"4.22.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://hausofskai-wip.com/moanalagooncharters/wp-content/uploads/2024/02/IMG_20230710_122318_249.jpg\" title_text=\"IMG_20230710_122318_249\" _builder_version=\"4.22.0\" _module_preset=\"default\" height=\"210px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','121-revision-v1','','','2024-03-12 22:26:28','2024-03-12 22:26:28','',121,'https://hausofskai-wip.com/moanalagooncharters/?p=228',0,'revision','',0);
/*!40000 ALTER TABLE `wp7riu_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_term_relationships`
--

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

--
-- Dumping data for table `wp7riu_term_relationships`
--

LOCK TABLES `wp7riu_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp7riu_term_relationships` DISABLE KEYS */;
INSERT INTO `wp7riu_term_relationships` VALUES (1,1,0),(7,2,0),(10,3,0),(85,4,0),(85,5,0),(85,6,0),(165,7,0),(166,7,0),(167,7,0),(168,7,0),(217,4,0),(217,5,0),(217,6,0),(218,4,0),(218,5,0),(218,6,0);
/*!40000 ALTER TABLE `wp7riu_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_term_taxonomy`
--

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

--
-- Dumping data for table `wp7riu_term_taxonomy`
--

LOCK TABLES `wp7riu_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp7riu_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp7riu_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'wp_theme','',0,1),(3,3,'wp_theme','',0,1),(4,4,'scope','',0,3),(5,5,'layout_type','',0,3),(6,6,'module_width','',0,3),(7,7,'nav_menu','',0,4);
/*!40000 ALTER TABLE `wp7riu_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_termmeta`
--

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

--
-- Dumping data for table `wp7riu_termmeta`
--

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

--
-- Table structure for table `wp7riu_terms`
--

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

--
-- Dumping data for table `wp7riu_terms`
--

LOCK TABLES `wp7riu_terms` WRITE;
/*!40000 ALTER TABLE `wp7riu_terms` DISABLE KEYS */;
INSERT INTO `wp7riu_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentyfour','twentytwentyfour',0),(3,'Divi','divi',0),(4,'not_global','not_global',0),(5,'section','section',0),(6,'regular','regular',0),(7,'Primary','primary',0);
/*!40000 ALTER TABLE `wp7riu_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_trustindex_tripadvisor_reviews`
--

DROP TABLE IF EXISTS `wp7riu_trustindex_tripadvisor_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp7riu_trustindex_tripadvisor_reviews` (
  `id` tinyint(1) NOT NULL AUTO_INCREMENT,
  `user` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `user_photo` text DEFAULT NULL,
  `text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `rating` decimal(3,1) DEFAULT NULL,
  `highlight` varchar(11) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `reviewId` text DEFAULT NULL,
  `reply` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp7riu_trustindex_tripadvisor_reviews`
--

LOCK TABLES `wp7riu_trustindex_tripadvisor_reviews` WRITE;
/*!40000 ALTER TABLE `wp7riu_trustindex_tripadvisor_reviews` DISABLE KEYS */;
INSERT INTO `wp7riu_trustindex_tripadvisor_reviews` VALUES (1,'FeejeeJ9','https://media-cdn.tripadvisor.com/media/photo-m/1280/2a/d6/b6/9d/caption.jpg','<strong>Fantastic!!</strong>\nWe didn\'t want to go with the big touristy companies so decided to give Mona\'s Water Taxi a go.... Best decision ever!! Accommodation pick up and drop The weather was not co-operating',5.0,NULL,'2024-01-02','931989680',''),(2,'Ingrid','https://media-cdn.tripadvisor.com/media/photo-o/1a/f6/ed/7b/default-avatar-2020-6.jpg','<strong>One of the best things we\'ve done!</strong>\nWe had such a great time with Capt Dan. He was so patient with us being not experienced snorkelers (used to fresh water and not sea water) He was friendly and easy going. If you want to experience this beautiful lagoon with a local who is passionate about his beautiful part of the world this is defiantly the person to go with. No frills, no \'slick tourist operator\' just a down to earth lovely local experience! In saying that - safety gear on board and a lovely fresh fruit snack also supplied so still professional. Thanks Capt Dan - have recommended you to friends and family already.',5.0,NULL,'2023-10-30','923730745',''),(3,'1kath1','https://media-cdn.tripadvisor.com/media/photo-o/1a/f6/f4/d0/default-avatar-2020-33.jpg','<strong>Best lagoon day trip</strong>\nMona\'s Lagoon Charter run the best private tour of one of the most beautiful lagoons in the world. Our first experience was in 2017 after recommendation from another family. It exceeded our expectations. Casual and relaxed, without other tourists, experienced and local Captain Dan took us to the best snorkelling spots, swimming with GT\'s, Honeymoon Island and prepared us the most delicious and plentiful bbq lunch on One Foot Island consisting of fresh tuna, sausages and a range of local salads and fruits. We couldn\'t wait to go again so when we returned in 2023, it was the first thing we booked. It was just as we remembered. The boat had ample space for us 4 adults, Captain Dan and his 2 young boys who did a great job of being Co-Captains. Transfers, fins, towels and bottled water throughout the day are provided. We booked the full day tour both times and it was worth every cent. Thank you Captain Dan and lovely Lorena, we look forward to seeing you again!',5.0,NULL,'2023-09-06','915119909',''),(4,'Ren.Ted','https://media-cdn.tripadvisor.com/media/photo-o/1a/f6/e9/bb/default-avatar-2020-65.jpg','<strong>Forget the big charter companies- go with Captain Dan!</strong>\nWe visited Aitutaki in June 2023 and wanted to do a lagoon cruise to experience all of the beauty of island paradise. We looked at the Vaka cruise , Bishop\'s cruises and a few others but preferred a more personal experience without lots of other tourists. Lorina was very efficient in her communications leading up to the excursion date and picked us up from our accommodation in the morning. We met Captain Dan and we spent the day swimming with giant trevally, snorkelling with turtles and giant clams and visiting Honeymoon island. We had a delicious lunch (prepared by Dan\'s wife and fresh fish cooked by Dan) on One Foot Island. We also visited Survivor islands and it was wonderful to hear about Aitutaki from a proud resident- born and raised there, who loves his home. At the end of the day, Dan dropped us back to our accommodation at Aitutaki Lagoon Private resort. Do yourself a favour if you are visiting Aitutaki and see it\'s beauty on a private charter with Captain Dan. Thankyou!',5.0,NULL,'2023-07-29','906597981',''),(5,'DarwinGreggyfroggy','https://media-cdn.tripadvisor.com/media/photo-o/1a/f6/ee/10/default-avatar-2020-8.jpg','<strong>Mona’s Water Taxis made our day perfect!</strong>\nWe just had the best experience island hopping around the Aitutaki motus. It all started a few weeks in advance with some exchange of emails. Every question was answered promptly and accurately. Communication was a big bonus during this trip preparation. We decided to use Monas Water Taxi services to avoid the Tour Boats. There is nothing to fault about the services. Only praise. The trip was customised as per our request. The food served and prepared was delicious. The friendliness and attention of the whole family was astonishing. What else? We had the perfect weather to accompany us all around. Support local businesses and enjoy these remote islands without the crowds!',5.0,NULL,'2023-07-29','906383450',''),(6,'John f','https://media-cdn.tripadvisor.com/media/photo-o/1a/f6/77/ae/default-avatar-2020-2.jpg','<strong>Great time, great people, great fun</strong>\nAwesome time spent with Captain and the boys out on the boat, Captain Dan knew all of the best places to go, and was helpful and patient with us first time snorklers. The boys were the most excellent hosts also, showing us around honeymoon island and sharing the wonderful fresh kai and drink with us. Totally recommend this tour, it’s personable, fact filled and fun with lots of fish and coral.',5.0,NULL,'2023-07-27','906099544',''),(7,'kcole5','https://media-cdn.tripadvisor.com/media/photo-m/1280/2a/05/21/83/kcole5.jpg','<strong>Just do it!</strong>\nCaptain Dan and his son took us out for a great day on the lagoon. We went to several motus ahead of the crowds and had the islands to ourselves. We also went to several snorkeling spots and had great encounters with giant trevally fish, clams, coral heads with loads of tropical fish. Lunch on a quiet island was also a good experience. We did a full day charter and that is definitely the way to go. The lagoon is very large and there is a lot of area to cover. Dan, having grown up in Aitutaki provided a great perspective. Would do this again!',5.0,NULL,'2023-07-21','904602120',''),(8,'aussiewanderers','https://media-cdn.tripadvisor.com/media/photo-o/1a/f6/e8/5b/default-avatar-2020-61.jpg','<strong>BASIC BUT GENUINE</strong>\nThis is a review of Mona\'s private charter boat on Aitutaki Lagoon. There are at least 4 companies with a small boat you can charter privately (ie, hire with a driver and guide, either 2 people or 1) to take you anywhere you want to go in the Lagoon or at their suggestion and your approval, take you to out-of-the-way places on the Lagoon which boat tours do not visit. It\'s not cheap at anywhere from $550 to $800 for a full day (=6hrs) on the water. The higher price will get you a fancy fast boat with comfortable seats, drinks on tap and lunch. All companies I think provide beach towels and snorkeling gear. The lower price will be more basic, and that is where Mona is at - basic but a genuine Cook Island experience in the sense that you travel as the locals do, in a slightly beat up but seaworthy aluminium runabout with plastic unanchored seats and only water to drink. Your guide, maybe Captain Dan, will be a genuine Cook Islander willing to share stories and answer your questions about anything relating to the Cook Islands. We had specific destinations in the Lagoon in mind and the boat took us there quickly but with lots of bumps like you always get in a small craft in windy conditions. We snorkeled spots the boat tour did not take us to (Purple Wall and Clam Farm) and then Capt Dan took us to a hideaway hut on a deserted island for lunch, which was basic but nice (salads plus cooked hot fish) as well as a coconut juice right out of the coconut shell. Unfortunately for us, the wind picked up and so we asked Capt Dan to take us to a swimming spot off a nice beach out of the wind. He excelled in his choice as we got to swim in the nicest spot we have ever swum in all our travels (Queensland Whitsundays, Fiji, Malaysia, Thailand). A beach with pure unadulterated white sand and crystal clear water for as far as you could see - just lovely and everyone\'s idea of a perfect tropical beach. Overall, you get what you pay for with the range of charterhprices. Mona\'s is basic but effective in letting you experience as much of the Lagoon as you wish. Capt Dan is no flash personality but a nice guy who gives you a good idea of Cook Island culture. If you want a fibreglass modern boat with cushioned seats and champagne, pay a bit more ($800 with Platinum Cruises) but see no better things than on a more economical option like Mona\'s. Finally, some companies offer a chartered half day cruise (3hrs) at about $300. Don\'t do it as you spend at least 30mins getting across to the far side of the lagoon and then 30mins back so you have only a net 2hrs to do and see stuff - not nearly enough time.',4.0,NULL,'2023-07-18','904026284',''),(9,'Sylvie M','https://media-cdn.tripadvisor.com/media/photo-o/1a/f6/e3/6a/default-avatar-2020-47.jpg','<strong>Best experience in Aitutaki</strong>\nThe day we spent with Dan and his son exploring the Aitutaki Lagoon was the best day of our Cook Islands holidays. We did the best snorkeling, we even swam with turtles, the Lunch was delicious and his son was an excellent helper. We can\'t wait to go back!',5.0,NULL,'2023-06-27','898461386',''),(10,'Scenic488286','https://media-cdn.tripadvisor.com/media/photo-o/1a/f6/ee/db/default-avatar-2020-10.jpg','<strong>Unforgettable</strong>\nWe had a wonderful time with Captain Dan and little Scarlet-Rose. Dan took us out to the beautiful Aitutaki lagoon and showed us some amazing snorkelling and island sites, some areas we had not seen before. Dan took great care of our little Mikaere who is only 8 and a little nervous jumping off the side of the boat to meet the fish and giant clams. He also got into the water to double check Mika was ok. We loved the fishing, history and cultural stories, the language and the environmental information he shared with us also about this paradise. Even though it was June and a little chilly, he made sure we were comfortable with fresh towels and some delicious snacks. The final touch was a trip out to visit the Rimu (seagrapes) garden at the entrance to the harbour. Not only did Dan show us where our favourite Aitutaki snack grows, he collected some for us and pointed out a beautiful moray eel watching closely nearby. Thank you to Dan, Lorina and Scarlet-Rose.',5.0,NULL,'2023-06-26','898267747','');
/*!40000 ALTER TABLE `wp7riu_trustindex_tripadvisor_reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_usermeta`
--

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

--
-- Dumping data for table `wp7riu_usermeta`
--

LOCK TABLES `wp7riu_usermeta` WRITE;
/*!40000 ALTER TABLE `wp7riu_usermeta` DISABLE KEYS */;
INSERT INTO `wp7riu_usermeta` VALUES (1,1,'nickname','Admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp7riu_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp7riu_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"1e8ccc980d050a88f510a0e59a0e602b6c8e8c3709ea8a21d5ca06fa1e5fd6dd\";a:4:{s:10:\"expiration\";i:1710454866;s:2:\"ip\";s:13:\"206.83.103.30\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1710282066;}}'),(17,1,'wp7riu_user-settings','libraryContent=browse&imgsize='),(18,1,'wp7riu_user-settings-time','1708209486'),(19,1,'wp7riu_dashboard_quick_press_last_post_id','225'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"206.83.103.0\";}'),(21,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\";}'),(22,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\";}'),(23,1,'nav_menu_recently_edited','7');
/*!40000 ALTER TABLE `wp7riu_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp7riu_users`
--

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

--
-- Dumping data for table `wp7riu_users`
--

LOCK TABLES `wp7riu_users` WRITE;
/*!40000 ALTER TABLE `wp7riu_users` DISABLE KEYS */;
INSERT INTO `wp7riu_users` VALUES (1,'Admin','$P$B9rZmzo6gyF1rToBqqPg/c7qhlEoA51','Admin','hausofskai@gmail.com','https://hausofskai-wip.com/moanalagooncharters','2024-02-09 01:35:34','',0,'Admin');
/*!40000 ALTER TABLE `wp7riu_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-03-19  0:34:10
