Skip to content

Instantly share code, notes, and snippets.

@zackpyle
Last active May 18, 2023 13:56
Show Gist options
  • Save zackpyle/974f880848c72bc3323569f6be96ecac to your computer and use it in GitHub Desktop.
Save zackpyle/974f880848c72bc3323569f6be96ecac to your computer and use it in GitHub Desktop.
Beaver Themer + ACF - Hero Section #beaverbuilder #beaverthemer

This is a download to make a Hero section on your pages using Beaver Themer and ACF.

- Steps to install -

  1. Download this whole Gist as a zip and extract
  2. Import the Hero Field Group (acf-hero-fields.json) into ACF (/wp-admin/edit.php?post_type=acf-field-group&page=acf-tools) - I like to exclude my Homepage for this fieldgroup as my homepage always has a custom hero section
  3. Paste the function for adding the body class (hero-bg-body-class.php) into your functions.php file or snippet plugin, leaving out the <?php at the beginning of the file
  4. Paste the hero styles CSS (hero-styles.css) into wherever you are writing your CSS (styles.css, customizer, BB Global CSS, etc)
  5. Use Wordpress importer (/wp-admin/import.php) to import the Themer Part (hero-themer-part.xml). Same as the ACF field group, I like to exclude my Homepage from this Themer Part as it always gets a custom hero
  6. Open the Themer Part with BB and edit the Row settings. For the Background Photo section, click on the wrench to set a new Default Image - this is what will show if a page doesn't have a featured image

You should now have an ACF hero metabox on your pages that you can add a featured image for the hero background, a dropdown to select background image location, and an override text field if you don't want the page title to be the hero title

[
{
"key": "group_620953aa38a42",
"title": "Hero",
"fields": [
{
"key": "field_620953ad3eccb",
"label": "Hero Title Override",
"name": "page_title_override",
"type": "text",
"instructions": "",
"required": 0,
"conditional_logic": 0,
"wrapper": {
"width": "",
"class": "",
"id": ""
},
"default_value": "",
"placeholder": "",
"prepend": "",
"append": "",
"maxlength": ""
},
{
"key": "field_620953b63eccc",
"label": "Hero Background Image",
"name": "_thumbnail_id",
"type": "image",
"instructions": "",
"required": 0,
"conditional_logic": 0,
"wrapper": {
"width": "",
"class": "",
"id": ""
},
"return_format": "array",
"preview_size": "medium",
"library": "all",
"min_width": "",
"min_height": "",
"min_size": "",
"max_width": "",
"max_height": "",
"max_size": "",
"mime_types": ""
},
{
"key": "field_623dc48df468e",
"label": "Hero Background Image Position",
"name": "hero_background_image_position",
"type": "select",
"instructions": "",
"required": 0,
"conditional_logic": 0,
"wrapper": {
"width": "",
"class": "",
"id": ""
},
"choices": {
"hero-center-center": "Center",
"hero-top-center": "Top",
"hero-bottom-center": "Bottom"
},
"default_value": "center",
"allow_null": 0,
"multiple": 0,
"ui": 0,
"return_format": "value",
"ajax": 0,
"placeholder": ""
}
],
"location": [
[
{
"param": "post_type",
"operator": "==",
"value": "page"
}
]
],
"menu_order": 0,
"position": "acf_after_title",
"style": "default",
"label_placement": "top",
"instruction_placement": "label",
"hide_on_screen": ["featured_image"],
"active": true,
"description": "",
"show_in_rest": 0
}
]
<?php // just for styling on this gist - don't use this line
// Add Hero BG Position to Body Class
function add_acf_body_class($class) {
if (!function_exists('get_field')) return $class;
$value = get_field('hero_background_image_position');
$class[] = $value;
return $class;
}
add_filter('body_class', 'add_acf_body_class');
/* Hero Size */
.hero:not(.home-hero) .fl-row-content-wrap {
min-height: 500px;
}
/* Home Hero Size */
.home-hero .fl-row-content-wrap{
min-height: calc(100vh - 85px);
}
@media (min-width: 768px) and (max-width: 992px) {
.hero:not(.home-hero) .fl-row-content-wrap {
min-height: 350px;
}
}
@media (max-width: 767px) {
.hero:not(.home-hero) .fl-row-content-wrap {
min-height: 200px;
}
}
/* Hero Background Position */
.hero-top-center .hero .fl-row-content-wrap {
background-position: top center !important;
}
.hero-center-center .hero .fl-row-content-wrap {
background-position: center center !important;
}
.hero-bottom-center .hero .fl-row-content-wrap {
background-position: bottom center !important;
}
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>Hero</title>
<link></link>
<description></description>
<pubDate>Fri, 25 Mar 2022 15:01:00 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url></wp:base_site_url>
<wp:base_blog_url></wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[zackpyle]]></wp:author_login><wp:author_email><![CDATA[zack@pyledigital.com]]></wp:author_email><wp:author_display_name><![CDATA[Zack]]></wp:author_display_name><wp:author_first_name><![CDATA[Zack]]></wp:author_first_name><wp:author_last_name><![CDATA[Pyle]]></wp:author_last_name></wp:author>
<item>
<title>
Hero </title>
<link></link>
<pubDate>Sun, 13 Feb 2022 18:51:09 +0000</pubDate>
<dc:creator><![CDATA[zackpyle]]></dc:creator>
<guid isPermaLink="false"></guid>
<description></description>
<content:encoded>
<![CDATA[<!-- wp:fl-builder/layout -->
<h1>
[wpbb-if post:acf type='text' name='page_title_override'][wpbb post:acf type='text' name='page_title_override'][wpbb-else][wpbb post:title][/wpbb-if]
</h1>
<!-- /wp:fl-builder/layout -->]]> </content:encoded>
<excerpt:encoded>
<![CDATA[]]> </excerpt:encoded>
<wp:post_id>2951</wp:post_id>
<wp:post_date><![CDATA[2022-02-13 12:51:09]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2022-02-13 18:51:09]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[hero]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[fl-theme-layout]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_builder_enabled]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_layout_type]]></wp:meta_key>
<wp:meta_value><![CDATA[part]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_builder_locations]]></wp:meta_key>
<wp:meta_value><![CDATA[a:1:{i:0;s:9:"post:page";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_builder_exclusions]]></wp:meta_key>
<wp:meta_value><![CDATA[a:1:{i:0;s:12:"post:page:23";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_builder_user_rules]]></wp:meta_key>
<wp:meta_value><![CDATA[a:0:{}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_builder_logic]]></wp:meta_key>
<wp:meta_value><![CDATA[a:0:{}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_layout_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:6:"sticky";s:1:"0";s:9:"sticky-on";s:0:"";s:6:"shrink";s:1:"0";s:7:"overlay";s:1:"0";s:10:"overlay_bg";s:11:"transparent";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_layout_hook]]></wp:meta_key>
<wp:meta_value><![CDATA[fl_before_content]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_layout_order]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[inline_featured_image]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_theme_builder_preview_location]]></wp:meta_key>
<wp:meta_value><![CDATA[post:page:1880]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_builder_history_position]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_builder_draft]]></wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:12:"lizon304ka1y";O:8:"stdClass":6:{s:4:"node";s:12:"lizon304ka1y";s:4:"type";s:12:"column-group";s:6:"parent";s:12:"kdybp2vorf07";s:8:"position";i:0;s:8:"settings";s:0:"";s:6:"global";b:0;}s:12:"frv0xn8am4uk";O:8:"stdClass":6:{s:4:"node";s:12:"frv0xn8am4uk";s:4:"type";s:6:"column";s:6:"parent";s:12:"lizon304ka1y";s:8:"position";i:0;s:8:"settings";O:8:"stdClass":160:{s:4:"size";i:100;s:11:"size_medium";s:0:"";s:15:"size_responsive";s:0:"";s:10:"min_height";s:0:"";s:15:"min_height_unit";s:2:"px";s:17:"min_height_medium";s:0:"";s:22:"min_height_medium_unit";s:2:"px";s:21:"min_height_responsive";s:0:"";s:26:"min_height_responsive_unit";s:2:"px";s:12:"equal_height";s:2:"no";s:17:"content_alignment";s:3:"top";s:10:"text_color";s:0:"";s:10:"link_color";s:0:"";s:11:"hover_color";s:0:"";s:13:"heading_color";s:0:"";s:7:"bg_type";s:5:"color";s:8:"bg_image";s:0:"";s:12:"bg_image_src";s:0:"";s:15:"bg_image_medium";s:0:"";s:19:"bg_image_medium_src";s:0:"";s:19:"bg_image_responsive";s:0:"";s:23:"bg_image_responsive_src";s:0:"";s:9:"bg_repeat";s:4:"none";s:16:"bg_repeat_medium";s:0:"";s:20:"bg_repeat_responsive";s:0:"";s:11:"bg_position";s:13:"center center";s:18:"bg_position_medium";s:0:"";s:22:"bg_position_responsive";s:0:"";s:13:"bg_x_position";s:0:"";s:18:"bg_x_position_unit";s:1:"%";s:20:"bg_x_position_medium";s:0:"";s:25:"bg_x_position_medium_unit";s:1:"%";s:24:"bg_x_position_responsive";s:0:"";s:29:"bg_x_position_responsive_unit";s:1:"%";s:13:"bg_y_position";s:0:"";s:18:"bg_y_position_unit";s:1:"%";s:20:"bg_y_position_medium";s:0:"";s:25:"bg_y_position_medium_unit";s:1:"%";s:24:"bg_y_position_responsive";s:0:"";s:29:"bg_y_position_responsive_unit";s:1:"%";s:13:"bg_attachment";s:6:"scroll";s:20:"bg_attachment_medium";s:0:"";s:24:"bg_attachment_responsive";s:0:"";s:7:"bg_size";s:5:"cover";s:14:"bg_size_medium";s:0:"";s:18:"bg_size_responsive";s:0:"";s:15:"bg_overlay_type";s:5:"color";s:16:"bg_overlay_color";s:0:"";s:19:"bg_overlay_gradient";s:0:"";s:8:"bg_color";s:0:"";s:11:"bg_gradient";s:0:"";s:6:"border";s:0:"";s:13:"border_medium";s:0:"";s:17:"border_responsive";s:0:"";s:19:"bt_column_max_width";s:0:"";s:26:"bt_column_max_width_medium";s:0:"";s:30:"bt_column_max_width_responsive";s:0:"";s:13:"bt_stick_side";s:5:"right";s:12:"btbb_pattern";s:0:"";s:18:"btbb_pattern_color";s:4:"grey";s:21:"btbb_background_color";s:10:"whitesmoke";s:17:"btbb_pattern_size";s:0:"";s:16:"enable_separator";s:2:"no";s:14:"separator_type";s:0:"";s:15:"separator_color";s:6:"ffffff";s:17:"separator_opacity";i:100;s:16:"separator_height";i:100;s:18:"separator_position";s:6:"bottom";s:16:"separator_tablet";s:2:"no";s:23:"separator_height_tablet";s:0:"";s:16:"separator_mobile";s:2:"no";s:23:"separator_height_mobile";s:0:"";s:18:"responsive_display";s:0:"";s:16:"responsive_order";s:7:"default";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:16:"visibility_logic";a:0:{}s:6:"sticky";s:5:"false";s:13:"stickPosition";s:3:"top";s:12:"stickyOffset";s:2:"50";s:6:"zindex";s:0:"";s:11:"zindexhover";s:0:"";s:11:"col_flexbox";s:2:"no";s:19:"col_flexbox_columns";s:1:"0";s:26:"col_flexbox_columns_medium";s:0:"";s:30:"col_flexbox_columns_responsive";s:0:"";s:34:"col_flexbox_columns_subtract_width";s:0:"";s:41:"col_flexbox_columns_subtract_width_medium";s:0:"";s:45:"col_flexbox_columns_subtract_width_responsive";s:0:"";s:22:"col_flexbox_column_gap";s:1:"0";s:27:"col_flexbox_column_gap_unit";s:2:"px";s:29:"col_flexbox_column_gap_medium";s:0:"";s:34:"col_flexbox_column_gap_medium_unit";s:2:"px";s:33:"col_flexbox_column_gap_responsive";s:0:"";s:38:"col_flexbox_column_gap_responsive_unit";s:2:"px";s:19:"col_flexbox_row_gap";s:1:"0";s:24:"col_flexbox_row_gap_unit";s:2:"px";s:26:"col_flexbox_row_gap_medium";s:0:"";s:31:"col_flexbox_row_gap_medium_unit";s:2:"px";s:30:"col_flexbox_row_gap_responsive";s:0:"";s:35:"col_flexbox_row_gap_responsive_unit";s:2:"px";s:16:"col_flexbox_grow";s:1:"0";s:23:"col_flexbox_grow_medium";s:0:"";s:27:"col_flexbox_grow_responsive";s:0:"";s:18:"col_flexbox_shrink";s:1:"1";s:25:"col_flexbox_shrink_medium";s:0:"";s:29:"col_flexbox_shrink_responsive";s:0:"";s:27:"col_flexbox_justify_content";s:6:"normal";s:34:"col_flexbox_justify_content_medium";s:0:"";s:38:"col_flexbox_justify_content_responsive";s:0:"";s:23:"col_flexbox_align_items";s:6:"normal";s:30:"col_flexbox_align_items_medium";s:0:"";s:34:"col_flexbox_align_items_responsive";s:0:"";s:25:"col_flexbox_align_content";s:0:"";s:32:"col_flexbox_align_content_medium";s:0:"";s:36:"col_flexbox_align_content_responsive";s:0:"";s:21:"col_flexbox_flex_wrap";s:4:"wrap";s:28:"col_flexbox_flex_wrap_medium";s:0:"";s:32:"col_flexbox_flex_wrap_responsive";s:0:"";s:26:"col_flexbox_flex_direction";s:3:"row";s:33:"col_flexbox_flex_direction_medium";s:0:"";s:37:"col_flexbox_flex_direction_responsive";s:0:"";s:22:"col_flexbox_max_height";s:0:"";s:29:"col_flexbox_max_height_medium";s:0:"";s:33:"col_flexbox_max_height_responsive";s:0:"";s:9:"animation";s:0:"";s:17:"container_element";s:3:"div";s:2:"id";s:0:"";s:5:"class";s:0:"";s:10:"node_label";s:0:"";s:10:"margin_top";s:0:"";s:11:"margin_unit";s:2:"px";s:17:"margin_top_medium";s:0:"";s:18:"margin_medium_unit";s:2:"px";s:21:"margin_top_responsive";s:0:"";s:22:"margin_responsive_unit";s:2:"px";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:11:"padding_top";s:0:"";s:12:"padding_unit";s:2:"px";s:18:"padding_top_medium";s:0:"";s:19:"padding_medium_unit";s:2:"px";s:22:"padding_top_responsive";s:0:"";s:23:"padding_responsive_unit";s:2:"px";s:13:"padding_right";s:0:"";s:20:"padding_right_medium";s:0:"";s:24:"padding_right_responsive";s:0:"";s:14:"padding_bottom";s:0:"";s:21:"padding_bottom_medium";s:0:"";s:25:"padding_bottom_responsive";s:0:"";s:12:"padding_left";s:0:"";s:19:"padding_left_medium";s:0:"";s:23:"padding_left_responsive";s:0:"";}s:6:"global";b:0;}s:12:"czamrwheyl1i";O:8:"stdClass":6:{s:4:"node";s:12:"czamrwheyl1i";s:4:"type";s:6:"module";s:6:"parent";s:12:"frv0xn8am4uk";s:8:"position";i:0;s:8:"settings";O:8:"stdClass":62:{s:7:"heading";s:149:"[wpbb-if post:acf type='text' name='page_title_override'][wpbb post:acf type='text' name='page_title_override'][wpbb-else][wpbb post:title][/wpbb-if]";s:3:"tag";s:2:"h1";s:4:"link";s:0:"";s:11:"link_target";s:5:"_self";s:13:"link_nofollow";s:2:"no";s:5:"color";s:0:"";s:10:"typography";a:11:{s:11:"font_family";s:7:"Default";s:11:"font_weight";s:7:"default";s:9:"font_size";a:2:{s:6:"length";s:0:"";s:4:"unit";s:2:"px";}s:11:"line_height";a:2:{s:6:"length";s:0:"";s:4:"unit";s:0:"";}s:10:"text_align";s:6:"center";s:14:"letter_spacing";a:1:{s:6:"length";s:0:"";}s:14:"text_transform";s:0:"";s:15:"text_decoration";s:0:"";s:10:"font_style";s:0:"";s:12:"font_variant";s:0:"";s:11:"text_shadow";a:4:{s:5:"color";s:16:"rgba(0,0,0,0.35)";s:10:"horizontal";s:1:"3";s:8:"vertical";s:1:"3";s:4:"blur";s:1:"8";}}s:17:"typography_medium";a:9:{s:9:"font_size";a:2:{s:6:"length";s:0:"";s:4:"unit";s:2:"px";}s:11:"line_height";a:2:{s:6:"length";s:0:"";s:4:"unit";s:0:"";}s:10:"text_align";s:0:"";s:14:"letter_spacing";a:1:{s:6:"length";s:0:"";}s:14:"text_transform";s:0:"";s:15:"text_decoration";s:0:"";s:10:"font_style";s:0:"";s:12:"font_variant";s:0:"";s:11:"text_shadow";a:4:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";}}s:21:"typography_responsive";a:9:{s:9:"font_size";a:2:{s:6:"length";s:0:"";s:4:"unit";s:2:"px";}s:11:"line_height";a:2:{s:6:"length";s:0:"";s:4:"unit";s:0:"";}s:10:"text_align";s:0:"";s:14:"letter_spacing";a:1:{s:6:"length";s:0:"";}s:14:"text_transform";s:0:"";s:15:"text_decoration";s:0:"";s:10:"font_style";s:0:"";s:12:"font_variant";s:0:"";s:11:"text_shadow";a:4:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";}}s:18:"responsive_display";s:0:"";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:16:"visibility_logic";s:2:"[]";s:6:"zindex";s:0:"";s:11:"zindexhover";s:0:"";s:6:"export";s:0:"";s:6:"import";s:0:"";s:14:"module_flexbox";s:2:"no";s:22:"module_flexbox_columns";s:1:"0";s:29:"module_flexbox_columns_medium";s:0:"";s:33:"module_flexbox_columns_responsive";s:0:"";s:37:"module_flexbox_columns_subtract_width";s:0:"";s:44:"module_flexbox_columns_subtract_width_medium";s:0:"";s:48:"module_flexbox_columns_subtract_width_responsive";s:0:"";s:19:"module_flexbox_grow";s:1:"0";s:26:"module_flexbox_grow_medium";s:0:"";s:30:"module_flexbox_grow_responsive";s:0:"";s:21:"module_flexbox_shrink";s:1:"1";s:28:"module_flexbox_shrink_medium";s:0:"";s:32:"module_flexbox_shrink_responsive";s:0:"";s:25:"module_flexbox_align_self";s:4:"auto";s:32:"module_flexbox_align_self_medium";s:0:"";s:36:"module_flexbox_align_self_responsive";s:0:"";s:20:"module_flexbox_order";s:1:"0";s:27:"module_flexbox_order_medium";s:0:"";s:31:"module_flexbox_order_responsive";s:0:"";s:9:"animation";a:3:{s:5:"style";s:0:"";s:5:"delay";s:1:"0";s:8:"duration";s:1:"1";}s:17:"container_element";s:3:"div";s:2:"id";s:0:"";s:5:"class";s:0:"";s:10:"node_label";s:0:"";s:17:"custom_attributes";a:1:{i:0;O:8:"stdClass":4:{s:1:"0";s:0:"";s:3:"key";s:0:"";s:5:"value";s:0:"";s:8:"override";s:2:"no";}}s:17:"bt_default_module";s:0:"";s:10:"margin_top";s:0:"";s:11:"margin_unit";s:2:"px";s:17:"margin_top_medium";s:0:"";s:18:"margin_medium_unit";s:2:"px";s:21:"margin_top_responsive";s:0:"";s:22:"margin_responsive_unit";s:2:"px";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:4:"type";s:7:"heading";s:11:"connections";a:3:{s:7:"heading";s:0:"";s:4:"link";s:0:"";s:5:"color";s:0:"";}s:11:"link-search";s:0:"";s:21:"as_values_link-search";s:0:"";}s:6:"global";b:0;}s:12:"kdybp2vorf07";O:8:"stdClass":6:{s:4:"node";s:12:"kdybp2vorf07";s:4:"type";s:3:"row";s:6:"parent";N;s:8:"position";i:0;s:8:"settings";O:8:"stdClass":298:{s:5:"width";s:4:"full";s:13:"content_width";s:5:"fixed";s:17:"max_content_width";s:0:"";s:22:"max_content_width_unit";s:2:"px";s:11:"full_height";s:6:"custom";s:10:"min_height";s:0:"";s:15:"min_height_unit";s:2:"px";s:17:"min_height_medium";s:0:"";s:22:"min_height_medium_unit";s:2:"px";s:21:"min_height_responsive";s:0:"";s:26:"min_height_responsive_unit";s:2:"px";s:17:"content_alignment";s:6:"center";s:10:"text_color";s:6:"ffffff";s:10:"link_color";s:0:"";s:11:"hover_color";s:0:"";s:13:"heading_color";s:0:"";s:7:"bg_type";s:5:"photo";s:15:"bg_image_source";s:7:"library";s:12:"bg_image_url";s:0:"";s:8:"bg_image";s:4:"2942";s:12:"bg_image_src";s:71:"/wp-content/uploads/2022/02/4W9A1906.jpg";s:15:"bg_image_medium";s:0:"";s:19:"bg_image_medium_src";s:0:"";s:19:"bg_image_responsive";s:0:"";s:23:"bg_image_responsive_src";s:0:"";s:9:"bg_repeat";s:9:"no-repeat";s:16:"bg_repeat_medium";s:0:"";s:20:"bg_repeat_responsive";s:0:"";s:11:"bg_position";s:13:"center center";s:18:"bg_position_medium";s:0:"";s:22:"bg_position_responsive";s:0:"";s:13:"bg_x_position";s:0:"";s:18:"bg_x_position_unit";s:1:"%";s:20:"bg_x_position_medium";s:0:"";s:25:"bg_x_position_medium_unit";s:1:"%";s:24:"bg_x_position_responsive";s:0:"";s:29:"bg_x_position_responsive_unit";s:1:"%";s:13:"bg_y_position";s:0:"";s:18:"bg_y_position_unit";s:1:"%";s:20:"bg_y_position_medium";s:0:"";s:25:"bg_y_position_medium_unit";s:1:"%";s:24:"bg_y_position_responsive";s:0:"";s:29:"bg_y_position_responsive_unit";s:1:"%";s:13:"bg_attachment";s:6:"scroll";s:20:"bg_attachment_medium";s:0:"";s:24:"bg_attachment_responsive";s:0:"";s:7:"bg_size";s:5:"cover";s:14:"bg_size_medium";s:0:"";s:18:"bg_size_responsive";s:0:"";s:15:"bg_video_source";s:9:"wordpress";s:8:"bg_video";s:0:"";s:13:"bg_video_webm";s:0:"";s:16:"bg_video_url_mp4";s:0:"";s:17:"bg_video_url_webm";s:0:"";s:20:"bg_video_service_url";s:0:"";s:14:"bg_video_audio";s:2:"no";s:15:"bg_video_mobile";s:2:"no";s:17:"bg_video_fallback";s:0:"";s:21:"bg_video_fallback_src";s:0:"";s:9:"ss_source";s:9:"wordpress";s:9:"ss_photos";s:0:"";s:11:"ss_feed_url";s:0:"";s:8:"ss_speed";s:1:"3";s:13:"ss_transition";s:4:"fade";s:21:"ss_transitionDuration";s:1:"1";s:12:"ss_randomize";s:5:"false";s:17:"bg_parallax_image";s:0:"";s:21:"bg_parallax_image_src";s:0:"";s:24:"bg_parallax_image_medium";s:0:"";s:28:"bg_parallax_image_medium_src";s:0:"";s:28:"bg_parallax_image_responsive";s:0:"";s:32:"bg_parallax_image_responsive_src";s:0:"";s:17:"bg_parallax_speed";s:1:"2";s:18:"bg_parallax_offset";s:0:"";s:25:"bg_parallax_offset_medium";s:0:"";s:29:"bg_parallax_offset_responsive";s:0:"";s:15:"bg_overlay_type";s:5:"color";s:19:"bg_overlay_gradient";a:5:{s:4:"type";s:6:"linear";s:5:"angle";s:2:"90";s:8:"position";s:13:"center center";s:6:"colors";a:2:{i:0;s:0:"";i:1;s:0:"";}s:5:"stops";a:2:{i:0;s:1:"0";i:1;s:3:"100";}}s:18:"pp_bg_overlay_type";s:10:"full_width";s:16:"bg_overlay_color";s:18:"rgba(15,22,41,0.5)";s:8:"bg_color";s:0:"";s:11:"bg_gradient";a:5:{s:4:"type";s:6:"linear";s:5:"angle";s:2:"90";s:8:"position";s:13:"center center";s:6:"colors";a:2:{i:0;s:0:"";i:1;s:0:"";}s:5:"stops";a:2:{i:0;s:1:"0";i:1;s:3:"100";}}s:13:"bg_embed_code";s:0:"";s:11:"pp_bg_image";s:0:"";s:15:"pp_bg_image_src";s:0:"";s:19:"pp_infinite_overlay";s:0:"";s:19:"scrolling_direction";s:10:"horizontal";s:21:"scrolling_direction_h";s:10:"right_left";s:21:"scrolling_direction_v";s:10:"bottom_top";s:15:"scrolling_speed";s:2:"50";s:14:"animation_type";s:5:"birds";s:13:"bird_bg_color";s:6:"07192f";s:15:"bird_bg_opacity";s:1:"1";s:12:"bird_color_1";s:6:"ff0001";s:12:"bird_color_2";s:6:"00d1ff";s:15:"bird_color_mode";s:4:"lerp";s:13:"bird_quantity";s:1:"4";s:9:"bird_size";s:3:"1.5";s:14:"bird_wing_span";s:2:"30";s:16:"bird_speed_limit";s:1:"5";s:15:"bird_separation";s:2:"20";s:14:"bird_alignment";s:2:"20";s:13:"bird_cohesion";s:2:"30";s:19:"fog_highlight_color";s:6:"ffc302";s:17:"fog_midtone_color";s:6:"ff1d01";s:18:"fog_lowlight_color";s:6:"2c07ff";s:14:"fog_base_color";s:6:"ffebeb";s:15:"fog_blur_factor";s:3:"0.6";s:8:"fog_zoom";s:1:"1";s:9:"fog_speed";s:1:"1";s:11:"waves_color";s:6:"005588";s:15:"waves_shininess";s:2:"30";s:12:"waves_height";s:2:"15";s:11:"waves_speed";s:1:"1";s:10:"waves_zoom";s:1:"1";s:9:"net_color";s:6:"ff3f81";s:12:"net_bg_color";s:6:"23153d";s:10:"net_points";s:2:"10";s:16:"net_max_distance";s:2:"20";s:11:"net_spacing";s:2:"15";s:12:"net_show_dot";s:4:"true";s:12:"dots_color_1";s:6:"ff8721";s:12:"dots_color_2";s:6:"ff8721";s:13:"dots_bg_color";s:6:"222222";s:9:"dots_size";s:1:"3";s:12:"dots_spacing";s:2:"35";s:14:"rings_bg_color";s:6:"000000";s:16:"rings_bg_opacity";s:1:"1";s:11:"rings_color";s:6:"ff0000";s:13:"cells_color_1";s:6:"008c8c";s:13:"cells_color_2";s:6:"f2e736";s:10:"cells_size";s:3:"1.5";s:11:"cells_speed";s:1:"2";s:13:"part_bg_color";s:6:"07192f";s:10:"part_color";s:0:"";s:12:"part_opacity";s:0:"";s:15:"part_line_color";s:0:"";s:17:"part_rand_opacity";s:4:"true";s:13:"part_quantity";s:0:"";s:9:"part_size";s:0:"";s:10:"part_speed";s:0:"";s:14:"part_direction";s:4:"none";s:17:"part_hover_effect";s:4:"none";s:15:"part_hover_size";s:0:"";s:17:"part_custom_code1";s:0:"";s:16:"part_custom_code";s:0:"";s:12:"part_bg_type";s:2:"no";s:13:"part_bg_image";s:0:"";s:17:"part_bg_image_src";s:0:"";s:12:"part_bg_size";s:2:"20";s:16:"part_bg_position";s:13:"center center";s:14:"bg_hide_tablet";s:2:"no";s:14:"bg_hide_mobile";s:2:"no";s:6:"border";a:5:{s:5:"style";s:0:"";s:5:"color";s:0:"";s:5:"width";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"radius";a:4:{s:8:"top_left";s:0:"";s:9:"top_right";s:0:"";s:11:"bottom_left";s:0:"";s:12:"bottom_right";s:0:"";}s:6:"shadow";a:5:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";s:6:"spread";s:0:"";}}s:13:"border_medium";a:5:{s:5:"style";s:0:"";s:5:"color";s:0:"";s:5:"width";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"radius";a:4:{s:8:"top_left";s:0:"";s:9:"top_right";s:0:"";s:11:"bottom_left";s:0:"";s:12:"bottom_right";s:0:"";}s:6:"shadow";a:5:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";s:6:"spread";s:0:"";}}s:17:"border_responsive";a:5:{s:5:"style";s:0:"";s:5:"color";s:0:"";s:5:"width";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"radius";a:4:{s:8:"top_left";s:0:"";s:9:"top_right";s:0:"";s:11:"bottom_left";s:0:"";s:12:"bottom_right";s:0:"";}s:6:"shadow";a:5:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";s:6:"spread";s:0:"";}}s:14:"top_edge_shape";s:0:"";s:14:"top_edge_align";s:10:"top center";s:19:"top_edge_fill_style";s:5:"color";s:19:"top_edge_fill_color";s:3:"aaa";s:26:"top_edge_fill_color_medium";s:0:"";s:30:"top_edge_fill_color_responsive";s:0:"";s:22:"top_edge_fill_gradient";a:5:{s:4:"type";s:6:"linear";s:5:"angle";s:2:"90";s:8:"position";s:13:"center center";s:6:"colors";a:2:{i:0;s:0:"";i:1;s:0:"";}s:5:"stops";a:2:{i:0;s:1:"0";i:1;s:3:"100";}}s:18:"top_edge_transform";a:7:{s:10:"scaleXSign";s:0:"";s:10:"scaleYSign";s:0:"";s:5:"skewX";s:0:"";s:5:"skewY";s:0:"";s:6:"scaleX";s:1:"1";s:6:"rotate";s:0:"";s:6:"scaleY";s:1:"1";}s:17:"bottom_edge_shape";s:0:"";s:17:"bottom_edge_align";s:13:"bottom center";s:22:"bottom_edge_fill_style";s:5:"color";s:22:"bottom_edge_fill_color";s:3:"aaa";s:29:"bottom_edge_fill_color_medium";s:0:"";s:33:"bottom_edge_fill_color_responsive";s:0:"";s:25:"bottom_edge_fill_gradient";a:5:{s:4:"type";s:6:"linear";s:5:"angle";s:2:"90";s:8:"position";s:13:"center center";s:6:"colors";a:2:{i:0;s:0:"";i:1;s:0:"";}s:5:"stops";a:2:{i:0;s:1:"0";i:1;s:3:"100";}}s:21:"bottom_edge_transform";a:7:{s:10:"scaleXSign";s:0:"";s:10:"scaleYSign";s:0:"";s:5:"skewX";s:0:"";s:5:"skewY";s:0:"";s:6:"scaleX";s:1:"1";s:6:"rotate";s:0:"";s:6:"scaleY";s:1:"1";}s:18:"container_overflow";s:0:"";s:12:"btbb_pattern";s:0:"";s:18:"btbb_pattern_color";s:4:"grey";s:21:"btbb_background_color";s:10:"whitesmoke";s:17:"btbb_pattern_size";s:0:"";s:16:"enable_separator";s:2:"no";s:14:"separator_type";s:4:"none";s:15:"separator_color";s:6:"ffffff";s:16:"separator_shadow";s:6:"f4f4f4";s:16:"separator_height";s:3:"100";s:18:"separator_position";s:3:"top";s:16:"separator_tablet";s:2:"no";s:23:"separator_height_tablet";s:0:"";s:16:"separator_mobile";s:2:"no";s:23:"separator_height_mobile";s:0:"";s:21:"separator_type_bottom";s:4:"none";s:22:"separator_color_bottom";s:6:"ffffff";s:23:"separator_shadow_bottom";s:6:"f4f4f4";s:23:"separator_height_bottom";s:3:"100";s:23:"separator_tablet_bottom";s:2:"no";s:30:"separator_height_tablet_bottom";s:0:"";s:23:"separator_mobile_bottom";s:2:"no";s:30:"separator_height_mobile_bottom";s:0:"";s:17:"enable_expandable";s:2:"no";s:8:"er_title";s:29:"Click here to expand this row";s:10:"er_title_e";s:31:"Click here to collapse this row";s:19:"er_transition_speed";s:3:"500";s:16:"er_default_state";s:9:"collapsed";s:13:"er_title_font";a:2:{s:6:"family";s:7:"Default";s:6:"weight";s:3:"400";}s:18:"er_title_font_size";s:2:"18";s:13:"er_title_case";s:4:"none";s:14:"er_title_color";a:2:{s:7:"primary";s:0:"";s:9:"secondary";s:0:"";}s:15:"er_title_margin";a:2:{s:6:"bottom";s:1:"0";s:5:"right";s:1:"0";}s:12:"er_arrow_pos";s:6:"bottom";s:13:"er_arrow_size";s:2:"12";s:15:"er_arrow_weight";s:4:"bold";s:14:"er_arrow_color";a:2:{s:7:"primary";s:0:"";s:9:"secondary";s:0:"";}s:11:"er_arrow_bg";a:2:{s:7:"primary";s:0:"";s:9:"secondary";s:0:"";}s:15:"er_arrow_border";s:1:"0";s:21:"er_arrow_border_color";a:2:{s:7:"primary";s:0:"";s:9:"secondary";s:0:"";}s:20:"er_arrow_padding_all";a:4:{s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";s:5:"right";s:1:"0";}s:15:"er_arrow_radius";s:1:"0";s:11:"er_bg_color";s:0:"";s:13:"er_bg_opacity";s:1:"1";s:16:"er_title_padding";a:2:{s:3:"top";s:2:"18";s:6:"bottom";s:2:"18";}s:17:"enable_down_arrow";s:2:"no";s:13:"da_icon_style";s:7:"style-1";s:19:"da_transition_speed";s:3:"500";s:13:"da_top_offset";s:1:"0";s:12:"da_animation";s:2:"no";s:14:"da_hide_mobile";s:2:"no";s:15:"da_arrow_weight";s:5:"light";s:14:"da_arrow_color";a:2:{s:7:"primary";s:6:"000000";s:9:"secondary";s:6:"000000";}s:11:"da_arrow_bg";a:2:{s:7:"primary";s:6:"f4f4f4";s:9:"secondary";s:6:"f4f4f4";}s:15:"da_arrow_border";s:1:"0";s:21:"da_arrow_border_color";a:2:{s:7:"primary";s:6:"000000";s:9:"secondary";s:6:"000000";}s:16:"da_arrow_padding";s:1:"0";s:15:"da_arrow_margin";a:2:{s:3:"top";s:1:"0";s:6:"bottom";s:2:"30";}s:15:"da_arrow_radius";s:0:"";s:18:"responsive_display";s:0:"";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:16:"visibility_logic";s:2:"[]";s:6:"sticky";s:5:"false";s:13:"stickPosition";s:3:"top";s:12:"stickyOffset";s:2:"50";s:11:"stickToBody";s:6:"inline";s:6:"zindex";s:0:"";s:11:"zindexhover";s:0:"";s:9:"animation";a:3:{s:5:"style";s:0:"";s:5:"delay";s:1:"0";s:8:"duration";s:1:"1";}s:17:"container_element";s:3:"div";s:2:"id";s:0:"";s:5:"class";s:4:"hero";s:10:"node_label";s:0:"";s:19:"top_edge_size_width";s:0:"";s:18:"top_edge_size_unit";s:2:"px";s:20:"top_edge_size_height";s:0:"";s:17:"top_edge_size_top";s:0:"";s:22:"bottom_edge_size_width";s:0:"";s:21:"bottom_edge_size_unit";s:2:"px";s:23:"bottom_edge_size_height";s:0:"";s:20:"bottom_edge_size_top";s:0:"";s:10:"margin_top";s:0:"";s:11:"margin_unit";s:2:"px";s:17:"margin_top_medium";s:0:"";s:18:"margin_medium_unit";s:2:"px";s:21:"margin_top_responsive";s:0:"";s:22:"margin_responsive_unit";s:2:"px";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:11:"padding_top";s:0:"";s:12:"padding_unit";s:2:"px";s:18:"padding_top_medium";s:0:"";s:19:"padding_medium_unit";s:2:"px";s:22:"padding_top_responsive";s:0:"";s:23:"padding_responsive_unit";s:2:"px";s:13:"padding_right";s:0:"";s:20:"padding_right_medium";s:0:"";s:24:"padding_right_responsive";s:0:"";s:14:"padding_bottom";s:0:"";s:21:"padding_bottom_medium";s:0:"";s:25:"padding_bottom_responsive";s:0:"";s:12:"padding_left";s:0:"";s:19:"padding_left_medium";s:0:"";s:23:"padding_left_responsive";s:0:"";s:11:"connections";a:49:{s:10:"text_color";s:0:"";s:10:"link_color";s:0:"";s:11:"hover_color";s:0:"";s:13:"heading_color";s:0:"";s:12:"bg_image_url";s:0:"";s:8:"bg_image";O:8:"stdClass":4:{s:6:"object";s:4:"post";s:8:"property";s:18:"featured_image_url";s:5:"field";s:5:"photo";s:8:"settings";O:8:"stdClass":3:{s:4:"size";s:9:"2048x2048";s:11:"default_img";s:4:"2942";s:15:"default_img_src";s:71:"/wp-content/uploads/2022/02/4W9A1906.jpg";}}s:16:"bg_video_url_mp4";s:0:"";s:17:"bg_video_url_webm";s:0:"";s:20:"bg_video_service_url";s:0:"";s:17:"bg_video_fallback";s:0:"";s:9:"ss_photos";s:0:"";s:11:"ss_feed_url";s:0:"";s:17:"bg_parallax_image";s:0:"";s:16:"bg_overlay_color";s:0:"";s:8:"bg_color";s:0:"";s:13:"bg_embed_code";s:0:"";s:11:"pp_bg_image";s:0:"";s:19:"pp_infinite_overlay";s:0:"";s:13:"bird_bg_color";s:0:"";s:12:"bird_color_1";s:0:"";s:12:"bird_color_2";s:0:"";s:19:"fog_highlight_color";s:0:"";s:17:"fog_midtone_color";s:0:"";s:18:"fog_lowlight_color";s:0:"";s:14:"fog_base_color";s:0:"";s:11:"waves_color";s:0:"";s:9:"net_color";s:0:"";s:12:"net_bg_color";s:0:"";s:12:"dots_color_1";s:0:"";s:12:"dots_color_2";s:0:"";s:13:"dots_bg_color";s:0:"";s:14:"rings_bg_color";s:0:"";s:11:"rings_color";s:0:"";s:13:"cells_color_1";s:0:"";s:13:"cells_color_2";s:0:"";s:13:"part_bg_color";s:0:"";s:10:"part_color";s:0:"";s:15:"part_line_color";s:0:"";s:16:"part_custom_code";s:0:"";s:13:"part_bg_image";s:0:"";s:19:"top_edge_fill_color";s:0:"";s:22:"bottom_edge_fill_color";s:0:"";s:15:"separator_color";s:0:"";s:16:"separator_shadow";s:0:"";s:22:"separator_color_bottom";s:0:"";s:23:"separator_shadow_bottom";s:0:"";s:8:"er_title";s:0:"";s:10:"er_title_e";s:0:"";s:11:"er_bg_color";s:0:"";}s:36:"flrich1644343122027_part_custom_code";s:0:"";s:9:"undefined";s:0:"";s:36:"flrich1644343153941_part_custom_code";s:0:"";s:36:"flrich1644343174241_part_custom_code";s:0:"";s:36:"flrich1644343885950_part_custom_code";s:0:"";s:36:"flrich1644431450268_part_custom_code";s:0:"";s:36:"flrich1644431470689_part_custom_code";s:0:"";s:36:"flrich1644431596644_part_custom_code";s:0:"";s:36:"flrich1644778192491_part_custom_code";s:0:"";s:36:"flrich1644778573751_part_custom_code";s:0:"";s:36:"flrich1644778609646_part_custom_code";s:0:"";s:36:"flrich1644939001047_part_custom_code";s:0:"";s:36:"flrich1645281403209_part_custom_code";s:0:"";}s:6:"global";b:0;}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_builder_draft_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[O:8:"stdClass":2:{s:3:"css";s:0:"";s:2:"js";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_builder_data]]></wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:12:"lizon304ka1y";O:8:"stdClass":6:{s:4:"node";s:12:"lizon304ka1y";s:4:"type";s:12:"column-group";s:6:"parent";s:12:"kdybp2vorf07";s:8:"position";i:0;s:8:"settings";s:0:"";s:6:"global";b:0;}s:12:"frv0xn8am4uk";O:8:"stdClass":6:{s:4:"node";s:12:"frv0xn8am4uk";s:4:"type";s:6:"column";s:6:"parent";s:12:"lizon304ka1y";s:8:"position";i:0;s:8:"settings";O:8:"stdClass":160:{s:4:"size";i:100;s:11:"size_medium";s:0:"";s:15:"size_responsive";s:0:"";s:10:"min_height";s:0:"";s:15:"min_height_unit";s:2:"px";s:17:"min_height_medium";s:0:"";s:22:"min_height_medium_unit";s:2:"px";s:21:"min_height_responsive";s:0:"";s:26:"min_height_responsive_unit";s:2:"px";s:12:"equal_height";s:2:"no";s:17:"content_alignment";s:3:"top";s:10:"text_color";s:0:"";s:10:"link_color";s:0:"";s:11:"hover_color";s:0:"";s:13:"heading_color";s:0:"";s:7:"bg_type";s:5:"color";s:8:"bg_image";s:0:"";s:12:"bg_image_src";s:0:"";s:15:"bg_image_medium";s:0:"";s:19:"bg_image_medium_src";s:0:"";s:19:"bg_image_responsive";s:0:"";s:23:"bg_image_responsive_src";s:0:"";s:9:"bg_repeat";s:4:"none";s:16:"bg_repeat_medium";s:0:"";s:20:"bg_repeat_responsive";s:0:"";s:11:"bg_position";s:13:"center center";s:18:"bg_position_medium";s:0:"";s:22:"bg_position_responsive";s:0:"";s:13:"bg_x_position";s:0:"";s:18:"bg_x_position_unit";s:1:"%";s:20:"bg_x_position_medium";s:0:"";s:25:"bg_x_position_medium_unit";s:1:"%";s:24:"bg_x_position_responsive";s:0:"";s:29:"bg_x_position_responsive_unit";s:1:"%";s:13:"bg_y_position";s:0:"";s:18:"bg_y_position_unit";s:1:"%";s:20:"bg_y_position_medium";s:0:"";s:25:"bg_y_position_medium_unit";s:1:"%";s:24:"bg_y_position_responsive";s:0:"";s:29:"bg_y_position_responsive_unit";s:1:"%";s:13:"bg_attachment";s:6:"scroll";s:20:"bg_attachment_medium";s:0:"";s:24:"bg_attachment_responsive";s:0:"";s:7:"bg_size";s:5:"cover";s:14:"bg_size_medium";s:0:"";s:18:"bg_size_responsive";s:0:"";s:15:"bg_overlay_type";s:5:"color";s:16:"bg_overlay_color";s:0:"";s:19:"bg_overlay_gradient";s:0:"";s:8:"bg_color";s:0:"";s:11:"bg_gradient";s:0:"";s:6:"border";s:0:"";s:13:"border_medium";s:0:"";s:17:"border_responsive";s:0:"";s:19:"bt_column_max_width";s:0:"";s:26:"bt_column_max_width_medium";s:0:"";s:30:"bt_column_max_width_responsive";s:0:"";s:13:"bt_stick_side";s:5:"right";s:12:"btbb_pattern";s:0:"";s:18:"btbb_pattern_color";s:4:"grey";s:21:"btbb_background_color";s:10:"whitesmoke";s:17:"btbb_pattern_size";s:0:"";s:16:"enable_separator";s:2:"no";s:14:"separator_type";s:0:"";s:15:"separator_color";s:6:"ffffff";s:17:"separator_opacity";i:100;s:16:"separator_height";i:100;s:18:"separator_position";s:6:"bottom";s:16:"separator_tablet";s:2:"no";s:23:"separator_height_tablet";s:0:"";s:16:"separator_mobile";s:2:"no";s:23:"separator_height_mobile";s:0:"";s:18:"responsive_display";s:0:"";s:16:"responsive_order";s:7:"default";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:16:"visibility_logic";a:0:{}s:6:"sticky";s:5:"false";s:13:"stickPosition";s:3:"top";s:12:"stickyOffset";s:2:"50";s:6:"zindex";s:0:"";s:11:"zindexhover";s:0:"";s:11:"col_flexbox";s:2:"no";s:19:"col_flexbox_columns";s:1:"0";s:26:"col_flexbox_columns_medium";s:0:"";s:30:"col_flexbox_columns_responsive";s:0:"";s:34:"col_flexbox_columns_subtract_width";s:0:"";s:41:"col_flexbox_columns_subtract_width_medium";s:0:"";s:45:"col_flexbox_columns_subtract_width_responsive";s:0:"";s:22:"col_flexbox_column_gap";s:1:"0";s:27:"col_flexbox_column_gap_unit";s:2:"px";s:29:"col_flexbox_column_gap_medium";s:0:"";s:34:"col_flexbox_column_gap_medium_unit";s:2:"px";s:33:"col_flexbox_column_gap_responsive";s:0:"";s:38:"col_flexbox_column_gap_responsive_unit";s:2:"px";s:19:"col_flexbox_row_gap";s:1:"0";s:24:"col_flexbox_row_gap_unit";s:2:"px";s:26:"col_flexbox_row_gap_medium";s:0:"";s:31:"col_flexbox_row_gap_medium_unit";s:2:"px";s:30:"col_flexbox_row_gap_responsive";s:0:"";s:35:"col_flexbox_row_gap_responsive_unit";s:2:"px";s:16:"col_flexbox_grow";s:1:"0";s:23:"col_flexbox_grow_medium";s:0:"";s:27:"col_flexbox_grow_responsive";s:0:"";s:18:"col_flexbox_shrink";s:1:"1";s:25:"col_flexbox_shrink_medium";s:0:"";s:29:"col_flexbox_shrink_responsive";s:0:"";s:27:"col_flexbox_justify_content";s:6:"normal";s:34:"col_flexbox_justify_content_medium";s:0:"";s:38:"col_flexbox_justify_content_responsive";s:0:"";s:23:"col_flexbox_align_items";s:6:"normal";s:30:"col_flexbox_align_items_medium";s:0:"";s:34:"col_flexbox_align_items_responsive";s:0:"";s:25:"col_flexbox_align_content";s:0:"";s:32:"col_flexbox_align_content_medium";s:0:"";s:36:"col_flexbox_align_content_responsive";s:0:"";s:21:"col_flexbox_flex_wrap";s:4:"wrap";s:28:"col_flexbox_flex_wrap_medium";s:0:"";s:32:"col_flexbox_flex_wrap_responsive";s:0:"";s:26:"col_flexbox_flex_direction";s:3:"row";s:33:"col_flexbox_flex_direction_medium";s:0:"";s:37:"col_flexbox_flex_direction_responsive";s:0:"";s:22:"col_flexbox_max_height";s:0:"";s:29:"col_flexbox_max_height_medium";s:0:"";s:33:"col_flexbox_max_height_responsive";s:0:"";s:9:"animation";s:0:"";s:17:"container_element";s:3:"div";s:2:"id";s:0:"";s:5:"class";s:0:"";s:10:"node_label";s:0:"";s:10:"margin_top";s:0:"";s:11:"margin_unit";s:2:"px";s:17:"margin_top_medium";s:0:"";s:18:"margin_medium_unit";s:2:"px";s:21:"margin_top_responsive";s:0:"";s:22:"margin_responsive_unit";s:2:"px";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:11:"padding_top";s:0:"";s:12:"padding_unit";s:2:"px";s:18:"padding_top_medium";s:0:"";s:19:"padding_medium_unit";s:2:"px";s:22:"padding_top_responsive";s:0:"";s:23:"padding_responsive_unit";s:2:"px";s:13:"padding_right";s:0:"";s:20:"padding_right_medium";s:0:"";s:24:"padding_right_responsive";s:0:"";s:14:"padding_bottom";s:0:"";s:21:"padding_bottom_medium";s:0:"";s:25:"padding_bottom_responsive";s:0:"";s:12:"padding_left";s:0:"";s:19:"padding_left_medium";s:0:"";s:23:"padding_left_responsive";s:0:"";}s:6:"global";b:0;}s:12:"czamrwheyl1i";O:8:"stdClass":6:{s:4:"node";s:12:"czamrwheyl1i";s:4:"type";s:6:"module";s:6:"parent";s:12:"frv0xn8am4uk";s:8:"position";i:0;s:8:"settings";O:8:"stdClass":62:{s:7:"heading";s:149:"[wpbb-if post:acf type='text' name='page_title_override'][wpbb post:acf type='text' name='page_title_override'][wpbb-else][wpbb post:title][/wpbb-if]";s:3:"tag";s:2:"h1";s:4:"link";s:0:"";s:11:"link_target";s:5:"_self";s:13:"link_nofollow";s:2:"no";s:5:"color";s:0:"";s:10:"typography";a:11:{s:11:"font_family";s:7:"Default";s:11:"font_weight";s:7:"default";s:9:"font_size";a:2:{s:6:"length";s:0:"";s:4:"unit";s:2:"px";}s:11:"line_height";a:2:{s:6:"length";s:0:"";s:4:"unit";s:0:"";}s:10:"text_align";s:6:"center";s:14:"letter_spacing";a:1:{s:6:"length";s:0:"";}s:14:"text_transform";s:0:"";s:15:"text_decoration";s:0:"";s:10:"font_style";s:0:"";s:12:"font_variant";s:0:"";s:11:"text_shadow";a:4:{s:5:"color";s:16:"rgba(0,0,0,0.35)";s:10:"horizontal";s:1:"3";s:8:"vertical";s:1:"3";s:4:"blur";s:1:"8";}}s:17:"typography_medium";a:9:{s:9:"font_size";a:2:{s:6:"length";s:0:"";s:4:"unit";s:2:"px";}s:11:"line_height";a:2:{s:6:"length";s:0:"";s:4:"unit";s:0:"";}s:10:"text_align";s:0:"";s:14:"letter_spacing";a:1:{s:6:"length";s:0:"";}s:14:"text_transform";s:0:"";s:15:"text_decoration";s:0:"";s:10:"font_style";s:0:"";s:12:"font_variant";s:0:"";s:11:"text_shadow";a:4:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";}}s:21:"typography_responsive";a:9:{s:9:"font_size";a:2:{s:6:"length";s:0:"";s:4:"unit";s:2:"px";}s:11:"line_height";a:2:{s:6:"length";s:0:"";s:4:"unit";s:0:"";}s:10:"text_align";s:0:"";s:14:"letter_spacing";a:1:{s:6:"length";s:0:"";}s:14:"text_transform";s:0:"";s:15:"text_decoration";s:0:"";s:10:"font_style";s:0:"";s:12:"font_variant";s:0:"";s:11:"text_shadow";a:4:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";}}s:18:"responsive_display";s:0:"";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:16:"visibility_logic";s:2:"[]";s:6:"zindex";s:0:"";s:11:"zindexhover";s:0:"";s:6:"export";s:0:"";s:6:"import";s:0:"";s:14:"module_flexbox";s:2:"no";s:22:"module_flexbox_columns";s:1:"0";s:29:"module_flexbox_columns_medium";s:0:"";s:33:"module_flexbox_columns_responsive";s:0:"";s:37:"module_flexbox_columns_subtract_width";s:0:"";s:44:"module_flexbox_columns_subtract_width_medium";s:0:"";s:48:"module_flexbox_columns_subtract_width_responsive";s:0:"";s:19:"module_flexbox_grow";s:1:"0";s:26:"module_flexbox_grow_medium";s:0:"";s:30:"module_flexbox_grow_responsive";s:0:"";s:21:"module_flexbox_shrink";s:1:"1";s:28:"module_flexbox_shrink_medium";s:0:"";s:32:"module_flexbox_shrink_responsive";s:0:"";s:25:"module_flexbox_align_self";s:4:"auto";s:32:"module_flexbox_align_self_medium";s:0:"";s:36:"module_flexbox_align_self_responsive";s:0:"";s:20:"module_flexbox_order";s:1:"0";s:27:"module_flexbox_order_medium";s:0:"";s:31:"module_flexbox_order_responsive";s:0:"";s:9:"animation";a:3:{s:5:"style";s:0:"";s:5:"delay";s:1:"0";s:8:"duration";s:1:"1";}s:17:"container_element";s:3:"div";s:2:"id";s:0:"";s:5:"class";s:0:"";s:10:"node_label";s:0:"";s:17:"custom_attributes";a:1:{i:0;O:8:"stdClass":4:{s:3:"key";s:0:"";s:5:"value";s:0:"";s:8:"override";s:2:"no";s:1:"0";s:0:"";}}s:17:"bt_default_module";s:0:"";s:10:"margin_top";s:0:"";s:11:"margin_unit";s:2:"px";s:17:"margin_top_medium";s:0:"";s:18:"margin_medium_unit";s:2:"px";s:21:"margin_top_responsive";s:0:"";s:22:"margin_responsive_unit";s:2:"px";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:4:"type";s:7:"heading";s:11:"connections";a:3:{s:7:"heading";s:0:"";s:4:"link";s:0:"";s:5:"color";s:0:"";}s:11:"link-search";s:0:"";s:21:"as_values_link-search";s:0:"";}s:6:"global";b:0;}s:12:"kdybp2vorf07";O:8:"stdClass":6:{s:4:"node";s:12:"kdybp2vorf07";s:4:"type";s:3:"row";s:6:"parent";N;s:8:"position";i:0;s:8:"settings";O:8:"stdClass":298:{s:5:"width";s:4:"full";s:13:"content_width";s:5:"fixed";s:17:"max_content_width";s:0:"";s:22:"max_content_width_unit";s:2:"px";s:11:"full_height";s:6:"custom";s:10:"min_height";s:0:"";s:15:"min_height_unit";s:2:"px";s:17:"min_height_medium";s:0:"";s:22:"min_height_medium_unit";s:2:"px";s:21:"min_height_responsive";s:0:"";s:26:"min_height_responsive_unit";s:2:"px";s:17:"content_alignment";s:6:"center";s:10:"text_color";s:6:"ffffff";s:10:"link_color";s:0:"";s:11:"hover_color";s:0:"";s:13:"heading_color";s:0:"";s:7:"bg_type";s:5:"photo";s:15:"bg_image_source";s:7:"library";s:12:"bg_image_url";s:0:"";s:8:"bg_image";s:4:"2942";s:12:"bg_image_src";s:71:"/wp-content/uploads/2022/02/4W9A1906.jpg";s:15:"bg_image_medium";s:0:"";s:19:"bg_image_medium_src";s:0:"";s:19:"bg_image_responsive";s:0:"";s:23:"bg_image_responsive_src";s:0:"";s:9:"bg_repeat";s:9:"no-repeat";s:16:"bg_repeat_medium";s:0:"";s:20:"bg_repeat_responsive";s:0:"";s:11:"bg_position";s:13:"center center";s:18:"bg_position_medium";s:0:"";s:22:"bg_position_responsive";s:0:"";s:13:"bg_x_position";s:0:"";s:18:"bg_x_position_unit";s:1:"%";s:20:"bg_x_position_medium";s:0:"";s:25:"bg_x_position_medium_unit";s:1:"%";s:24:"bg_x_position_responsive";s:0:"";s:29:"bg_x_position_responsive_unit";s:1:"%";s:13:"bg_y_position";s:0:"";s:18:"bg_y_position_unit";s:1:"%";s:20:"bg_y_position_medium";s:0:"";s:25:"bg_y_position_medium_unit";s:1:"%";s:24:"bg_y_position_responsive";s:0:"";s:29:"bg_y_position_responsive_unit";s:1:"%";s:13:"bg_attachment";s:6:"scroll";s:20:"bg_attachment_medium";s:0:"";s:24:"bg_attachment_responsive";s:0:"";s:7:"bg_size";s:5:"cover";s:14:"bg_size_medium";s:0:"";s:18:"bg_size_responsive";s:0:"";s:15:"bg_video_source";s:9:"wordpress";s:8:"bg_video";s:0:"";s:13:"bg_video_webm";s:0:"";s:16:"bg_video_url_mp4";s:0:"";s:17:"bg_video_url_webm";s:0:"";s:20:"bg_video_service_url";s:0:"";s:14:"bg_video_audio";s:2:"no";s:15:"bg_video_mobile";s:2:"no";s:17:"bg_video_fallback";s:0:"";s:21:"bg_video_fallback_src";s:0:"";s:9:"ss_source";s:9:"wordpress";s:9:"ss_photos";s:0:"";s:11:"ss_feed_url";s:0:"";s:8:"ss_speed";s:1:"3";s:13:"ss_transition";s:4:"fade";s:21:"ss_transitionDuration";s:1:"1";s:12:"ss_randomize";s:5:"false";s:17:"bg_parallax_image";s:0:"";s:21:"bg_parallax_image_src";s:0:"";s:24:"bg_parallax_image_medium";s:0:"";s:28:"bg_parallax_image_medium_src";s:0:"";s:28:"bg_parallax_image_responsive";s:0:"";s:32:"bg_parallax_image_responsive_src";s:0:"";s:17:"bg_parallax_speed";s:1:"2";s:18:"bg_parallax_offset";s:0:"";s:25:"bg_parallax_offset_medium";s:0:"";s:29:"bg_parallax_offset_responsive";s:0:"";s:15:"bg_overlay_type";s:5:"color";s:19:"bg_overlay_gradient";a:5:{s:4:"type";s:6:"linear";s:5:"angle";s:2:"90";s:8:"position";s:13:"center center";s:6:"colors";a:2:{i:0;s:0:"";i:1;s:0:"";}s:5:"stops";a:2:{i:0;s:1:"0";i:1;s:3:"100";}}s:18:"pp_bg_overlay_type";s:10:"full_width";s:16:"bg_overlay_color";s:18:"rgba(15,22,41,0.5)";s:8:"bg_color";s:0:"";s:11:"bg_gradient";a:5:{s:4:"type";s:6:"linear";s:5:"angle";s:2:"90";s:8:"position";s:13:"center center";s:6:"colors";a:2:{i:0;s:0:"";i:1;s:0:"";}s:5:"stops";a:2:{i:0;s:1:"0";i:1;s:3:"100";}}s:13:"bg_embed_code";s:0:"";s:11:"pp_bg_image";s:0:"";s:15:"pp_bg_image_src";s:0:"";s:19:"pp_infinite_overlay";s:0:"";s:19:"scrolling_direction";s:10:"horizontal";s:21:"scrolling_direction_h";s:10:"right_left";s:21:"scrolling_direction_v";s:10:"bottom_top";s:15:"scrolling_speed";s:2:"50";s:14:"animation_type";s:5:"birds";s:13:"bird_bg_color";s:6:"07192f";s:15:"bird_bg_opacity";s:1:"1";s:12:"bird_color_1";s:6:"ff0001";s:12:"bird_color_2";s:6:"00d1ff";s:15:"bird_color_mode";s:4:"lerp";s:13:"bird_quantity";s:1:"4";s:9:"bird_size";s:3:"1.5";s:14:"bird_wing_span";s:2:"30";s:16:"bird_speed_limit";s:1:"5";s:15:"bird_separation";s:2:"20";s:14:"bird_alignment";s:2:"20";s:13:"bird_cohesion";s:2:"30";s:19:"fog_highlight_color";s:6:"ffc302";s:17:"fog_midtone_color";s:6:"ff1d01";s:18:"fog_lowlight_color";s:6:"2c07ff";s:14:"fog_base_color";s:6:"ffebeb";s:15:"fog_blur_factor";s:3:"0.6";s:8:"fog_zoom";s:1:"1";s:9:"fog_speed";s:1:"1";s:11:"waves_color";s:6:"005588";s:15:"waves_shininess";s:2:"30";s:12:"waves_height";s:2:"15";s:11:"waves_speed";s:1:"1";s:10:"waves_zoom";s:1:"1";s:9:"net_color";s:6:"ff3f81";s:12:"net_bg_color";s:6:"23153d";s:10:"net_points";s:2:"10";s:16:"net_max_distance";s:2:"20";s:11:"net_spacing";s:2:"15";s:12:"net_show_dot";s:4:"true";s:12:"dots_color_1";s:6:"ff8721";s:12:"dots_color_2";s:6:"ff8721";s:13:"dots_bg_color";s:6:"222222";s:9:"dots_size";s:1:"3";s:12:"dots_spacing";s:2:"35";s:14:"rings_bg_color";s:6:"000000";s:16:"rings_bg_opacity";s:1:"1";s:11:"rings_color";s:6:"ff0000";s:13:"cells_color_1";s:6:"008c8c";s:13:"cells_color_2";s:6:"f2e736";s:10:"cells_size";s:3:"1.5";s:11:"cells_speed";s:1:"2";s:13:"part_bg_color";s:6:"07192f";s:10:"part_color";s:0:"";s:12:"part_opacity";s:0:"";s:15:"part_line_color";s:0:"";s:17:"part_rand_opacity";s:4:"true";s:13:"part_quantity";s:0:"";s:9:"part_size";s:0:"";s:10:"part_speed";s:0:"";s:14:"part_direction";s:4:"none";s:17:"part_hover_effect";s:4:"none";s:15:"part_hover_size";s:0:"";s:17:"part_custom_code1";s:0:"";s:16:"part_custom_code";s:0:"";s:12:"part_bg_type";s:2:"no";s:13:"part_bg_image";s:0:"";s:17:"part_bg_image_src";s:0:"";s:12:"part_bg_size";s:2:"20";s:16:"part_bg_position";s:13:"center center";s:14:"bg_hide_tablet";s:2:"no";s:14:"bg_hide_mobile";s:2:"no";s:6:"border";a:5:{s:5:"style";s:0:"";s:5:"color";s:0:"";s:5:"width";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"radius";a:4:{s:8:"top_left";s:0:"";s:9:"top_right";s:0:"";s:11:"bottom_left";s:0:"";s:12:"bottom_right";s:0:"";}s:6:"shadow";a:5:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";s:6:"spread";s:0:"";}}s:13:"border_medium";a:5:{s:5:"style";s:0:"";s:5:"color";s:0:"";s:5:"width";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"radius";a:4:{s:8:"top_left";s:0:"";s:9:"top_right";s:0:"";s:11:"bottom_left";s:0:"";s:12:"bottom_right";s:0:"";}s:6:"shadow";a:5:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";s:6:"spread";s:0:"";}}s:17:"border_responsive";a:5:{s:5:"style";s:0:"";s:5:"color";s:0:"";s:5:"width";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"radius";a:4:{s:8:"top_left";s:0:"";s:9:"top_right";s:0:"";s:11:"bottom_left";s:0:"";s:12:"bottom_right";s:0:"";}s:6:"shadow";a:5:{s:5:"color";s:0:"";s:10:"horizontal";s:0:"";s:8:"vertical";s:0:"";s:4:"blur";s:0:"";s:6:"spread";s:0:"";}}s:14:"top_edge_shape";s:0:"";s:14:"top_edge_align";s:10:"top center";s:19:"top_edge_fill_style";s:5:"color";s:19:"top_edge_fill_color";s:3:"aaa";s:26:"top_edge_fill_color_medium";s:0:"";s:30:"top_edge_fill_color_responsive";s:0:"";s:22:"top_edge_fill_gradient";a:5:{s:4:"type";s:6:"linear";s:5:"angle";s:2:"90";s:8:"position";s:13:"center center";s:6:"colors";a:2:{i:0;s:0:"";i:1;s:0:"";}s:5:"stops";a:2:{i:0;s:1:"0";i:1;s:3:"100";}}s:18:"top_edge_transform";a:7:{s:10:"scaleXSign";s:0:"";s:10:"scaleYSign";s:0:"";s:5:"skewX";s:0:"";s:5:"skewY";s:0:"";s:6:"scaleX";s:1:"1";s:6:"rotate";s:0:"";s:6:"scaleY";s:1:"1";}s:17:"bottom_edge_shape";s:0:"";s:17:"bottom_edge_align";s:13:"bottom center";s:22:"bottom_edge_fill_style";s:5:"color";s:22:"bottom_edge_fill_color";s:3:"aaa";s:29:"bottom_edge_fill_color_medium";s:0:"";s:33:"bottom_edge_fill_color_responsive";s:0:"";s:25:"bottom_edge_fill_gradient";a:5:{s:4:"type";s:6:"linear";s:5:"angle";s:2:"90";s:8:"position";s:13:"center center";s:6:"colors";a:2:{i:0;s:0:"";i:1;s:0:"";}s:5:"stops";a:2:{i:0;s:1:"0";i:1;s:3:"100";}}s:21:"bottom_edge_transform";a:7:{s:10:"scaleXSign";s:0:"";s:10:"scaleYSign";s:0:"";s:5:"skewX";s:0:"";s:5:"skewY";s:0:"";s:6:"scaleX";s:1:"1";s:6:"rotate";s:0:"";s:6:"scaleY";s:1:"1";}s:18:"container_overflow";s:0:"";s:12:"btbb_pattern";s:0:"";s:18:"btbb_pattern_color";s:4:"grey";s:21:"btbb_background_color";s:10:"whitesmoke";s:17:"btbb_pattern_size";s:0:"";s:16:"enable_separator";s:2:"no";s:14:"separator_type";s:4:"none";s:15:"separator_color";s:6:"ffffff";s:16:"separator_shadow";s:6:"f4f4f4";s:16:"separator_height";s:3:"100";s:18:"separator_position";s:3:"top";s:16:"separator_tablet";s:2:"no";s:23:"separator_height_tablet";s:0:"";s:16:"separator_mobile";s:2:"no";s:23:"separator_height_mobile";s:0:"";s:21:"separator_type_bottom";s:4:"none";s:22:"separator_color_bottom";s:6:"ffffff";s:23:"separator_shadow_bottom";s:6:"f4f4f4";s:23:"separator_height_bottom";s:3:"100";s:23:"separator_tablet_bottom";s:2:"no";s:30:"separator_height_tablet_bottom";s:0:"";s:23:"separator_mobile_bottom";s:2:"no";s:30:"separator_height_mobile_bottom";s:0:"";s:17:"enable_expandable";s:2:"no";s:8:"er_title";s:29:"Click here to expand this row";s:10:"er_title_e";s:31:"Click here to collapse this row";s:19:"er_transition_speed";s:3:"500";s:16:"er_default_state";s:9:"collapsed";s:13:"er_title_font";a:2:{s:6:"family";s:7:"Default";s:6:"weight";s:3:"400";}s:18:"er_title_font_size";s:2:"18";s:13:"er_title_case";s:4:"none";s:14:"er_title_color";a:2:{s:7:"primary";s:0:"";s:9:"secondary";s:0:"";}s:15:"er_title_margin";a:2:{s:6:"bottom";s:1:"0";s:5:"right";s:1:"0";}s:12:"er_arrow_pos";s:6:"bottom";s:13:"er_arrow_size";s:2:"12";s:15:"er_arrow_weight";s:4:"bold";s:14:"er_arrow_color";a:2:{s:7:"primary";s:0:"";s:9:"secondary";s:0:"";}s:11:"er_arrow_bg";a:2:{s:7:"primary";s:0:"";s:9:"secondary";s:0:"";}s:15:"er_arrow_border";s:1:"0";s:21:"er_arrow_border_color";a:2:{s:7:"primary";s:0:"";s:9:"secondary";s:0:"";}s:20:"er_arrow_padding_all";a:4:{s:3:"top";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";s:5:"right";s:1:"0";}s:15:"er_arrow_radius";s:1:"0";s:11:"er_bg_color";s:0:"";s:13:"er_bg_opacity";s:1:"1";s:16:"er_title_padding";a:2:{s:3:"top";s:2:"18";s:6:"bottom";s:2:"18";}s:17:"enable_down_arrow";s:2:"no";s:13:"da_icon_style";s:7:"style-1";s:19:"da_transition_speed";s:3:"500";s:13:"da_top_offset";s:1:"0";s:12:"da_animation";s:2:"no";s:14:"da_hide_mobile";s:2:"no";s:15:"da_arrow_weight";s:5:"light";s:14:"da_arrow_color";a:2:{s:7:"primary";s:6:"000000";s:9:"secondary";s:6:"000000";}s:11:"da_arrow_bg";a:2:{s:7:"primary";s:6:"f4f4f4";s:9:"secondary";s:6:"f4f4f4";}s:15:"da_arrow_border";s:1:"0";s:21:"da_arrow_border_color";a:2:{s:7:"primary";s:6:"000000";s:9:"secondary";s:6:"000000";}s:16:"da_arrow_padding";s:1:"0";s:15:"da_arrow_margin";a:2:{s:3:"top";s:1:"0";s:6:"bottom";s:2:"30";}s:15:"da_arrow_radius";s:0:"";s:18:"responsive_display";s:0:"";s:18:"visibility_display";s:0:"";s:26:"visibility_user_capability";s:0:"";s:16:"visibility_logic";s:2:"[]";s:6:"sticky";s:5:"false";s:13:"stickPosition";s:3:"top";s:12:"stickyOffset";s:2:"50";s:11:"stickToBody";s:6:"inline";s:6:"zindex";s:0:"";s:11:"zindexhover";s:0:"";s:9:"animation";a:3:{s:5:"style";s:0:"";s:5:"delay";s:1:"0";s:8:"duration";s:1:"1";}s:17:"container_element";s:3:"div";s:2:"id";s:0:"";s:5:"class";s:4:"hero";s:10:"node_label";s:0:"";s:19:"top_edge_size_width";s:0:"";s:18:"top_edge_size_unit";s:2:"px";s:20:"top_edge_size_height";s:0:"";s:17:"top_edge_size_top";s:0:"";s:22:"bottom_edge_size_width";s:0:"";s:21:"bottom_edge_size_unit";s:2:"px";s:23:"bottom_edge_size_height";s:0:"";s:20:"bottom_edge_size_top";s:0:"";s:10:"margin_top";s:0:"";s:11:"margin_unit";s:2:"px";s:17:"margin_top_medium";s:0:"";s:18:"margin_medium_unit";s:2:"px";s:21:"margin_top_responsive";s:0:"";s:22:"margin_responsive_unit";s:2:"px";s:12:"margin_right";s:0:"";s:19:"margin_right_medium";s:0:"";s:23:"margin_right_responsive";s:0:"";s:13:"margin_bottom";s:0:"";s:20:"margin_bottom_medium";s:0:"";s:24:"margin_bottom_responsive";s:0:"";s:11:"margin_left";s:0:"";s:18:"margin_left_medium";s:0:"";s:22:"margin_left_responsive";s:0:"";s:11:"padding_top";s:0:"";s:12:"padding_unit";s:2:"px";s:18:"padding_top_medium";s:0:"";s:19:"padding_medium_unit";s:2:"px";s:22:"padding_top_responsive";s:0:"";s:23:"padding_responsive_unit";s:2:"px";s:13:"padding_right";s:0:"";s:20:"padding_right_medium";s:0:"";s:24:"padding_right_responsive";s:0:"";s:14:"padding_bottom";s:0:"";s:21:"padding_bottom_medium";s:0:"";s:25:"padding_bottom_responsive";s:0:"";s:12:"padding_left";s:0:"";s:19:"padding_left_medium";s:0:"";s:23:"padding_left_responsive";s:0:"";s:11:"connections";a:49:{s:10:"text_color";s:0:"";s:10:"link_color";s:0:"";s:11:"hover_color";s:0:"";s:13:"heading_color";s:0:"";s:12:"bg_image_url";s:0:"";s:8:"bg_image";O:8:"stdClass":4:{s:6:"object";s:4:"post";s:8:"property";s:18:"featured_image_url";s:5:"field";s:5:"photo";s:8:"settings";O:8:"stdClass":3:{s:4:"size";s:9:"2048x2048";s:11:"default_img";s:4:"2942";s:15:"default_img_src";s:71:"/wp-content/uploads/2022/02/4W9A1906.jpg";}}s:16:"bg_video_url_mp4";s:0:"";s:17:"bg_video_url_webm";s:0:"";s:20:"bg_video_service_url";s:0:"";s:17:"bg_video_fallback";s:0:"";s:9:"ss_photos";s:0:"";s:11:"ss_feed_url";s:0:"";s:17:"bg_parallax_image";s:0:"";s:16:"bg_overlay_color";s:0:"";s:8:"bg_color";s:0:"";s:13:"bg_embed_code";s:0:"";s:11:"pp_bg_image";s:0:"";s:19:"pp_infinite_overlay";s:0:"";s:13:"bird_bg_color";s:0:"";s:12:"bird_color_1";s:0:"";s:12:"bird_color_2";s:0:"";s:19:"fog_highlight_color";s:0:"";s:17:"fog_midtone_color";s:0:"";s:18:"fog_lowlight_color";s:0:"";s:14:"fog_base_color";s:0:"";s:11:"waves_color";s:0:"";s:9:"net_color";s:0:"";s:12:"net_bg_color";s:0:"";s:12:"dots_color_1";s:0:"";s:12:"dots_color_2";s:0:"";s:13:"dots_bg_color";s:0:"";s:14:"rings_bg_color";s:0:"";s:11:"rings_color";s:0:"";s:13:"cells_color_1";s:0:"";s:13:"cells_color_2";s:0:"";s:13:"part_bg_color";s:0:"";s:10:"part_color";s:0:"";s:15:"part_line_color";s:0:"";s:16:"part_custom_code";s:0:"";s:13:"part_bg_image";s:0:"";s:19:"top_edge_fill_color";s:0:"";s:22:"bottom_edge_fill_color";s:0:"";s:15:"separator_color";s:0:"";s:16:"separator_shadow";s:0:"";s:22:"separator_color_bottom";s:0:"";s:23:"separator_shadow_bottom";s:0:"";s:8:"er_title";s:0:"";s:10:"er_title_e";s:0:"";s:11:"er_bg_color";s:0:"";}s:36:"flrich1644343122027_part_custom_code";s:0:"";s:9:"undefined";s:0:"";s:36:"flrich1644343153941_part_custom_code";s:0:"";s:36:"flrich1644343174241_part_custom_code";s:0:"";s:36:"flrich1644343885950_part_custom_code";s:0:"";s:36:"flrich1644431450268_part_custom_code";s:0:"";s:36:"flrich1644431470689_part_custom_code";s:0:"";s:36:"flrich1644431596644_part_custom_code";s:0:"";s:36:"flrich1644778192491_part_custom_code";s:0:"";s:36:"flrich1644778573751_part_custom_code";s:0:"";s:36:"flrich1644778609646_part_custom_code";s:0:"";s:36:"flrich1644939001047_part_custom_code";s:0:"";s:36:"flrich1645281403209_part_custom_code";s:0:"";}s:6:"global";b:0;}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_fl_builder_data_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[O:8:"stdClass":2:{s:3:"css";s:0:"";s:2:"js";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
</item>
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment