/home/wsweb680/public_html/wsweb680_wp_h3gpn_cwh.sql
/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.14-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: wsweb680_wp_h3gpn
-- ------------------------------------------------------
-- Server version	10.11.14-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 `ePgN5dhl_commentmeta`
--

DROP TABLE IF EXISTS `ePgN5dhl_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_commentmeta`
--

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

--
-- Table structure for table `ePgN5dhl_comments`
--

DROP TABLE IF EXISTS `ePgN5dhl_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_comments`
--

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

--
-- Table structure for table `ePgN5dhl_links`
--

DROP TABLE IF EXISTS `ePgN5dhl_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_links`
--

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

--
-- Table structure for table `ePgN5dhl_options`
--

DROP TABLE IF EXISTS `ePgN5dhl_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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=1278 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_options`
--

LOCK TABLES `ePgN5dhl_options` WRITE;
/*!40000 ALTER TABLE `ePgN5dhl_options` DISABLE KEYS */;
INSERT INTO `ePgN5dhl_options` VALUES
(1,'cron','a:11:{i:1757541516;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:1757569960;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1757572114;a:1:{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;}}}i:1757573914;a:1:{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:1757609916;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:1757613160;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1757613161;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1757653628;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1758042488;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:1758128316;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),
(2,'siteurl','https://jestley.com','on'),
(3,'home','https://jestley.com','on'),
(4,'blogname','BC Contracting Company','on'),
(5,'blogdescription','Not your average marketing firm...','on'),
(6,'users_can_register','0','on'),
(7,'admin_email','jestley@outlook.com','on'),
(8,'start_of_week','1','on'),
(9,'use_balanceTags','0','on'),
(10,'use_smilies','1','on'),
(11,'require_name_email','1','on'),
(12,'comments_notify','1','on'),
(13,'posts_per_rss','10','on'),
(14,'rss_use_excerpt','0','on'),
(15,'mailserver_url','mail.example.com','on'),
(16,'mailserver_login','login@example.com','on'),
(17,'mailserver_pass','','on'),
(18,'mailserver_port','110','on'),
(19,'default_category','1','on'),
(20,'default_comment_status','open','on'),
(21,'default_ping_status','open','on'),
(22,'default_pingback_flag','1','on'),
(23,'posts_per_page','10','on'),
(24,'date_format','F j, Y','on'),
(25,'time_format','g:i a','on'),
(26,'links_updated_date_format','F j, Y g:i a','on'),
(27,'comment_moderation','0','on'),
(28,'moderation_notify','1','on'),
(29,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','on'),
(30,'rewrite_rules','a:324:{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: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:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";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=6&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]\";}','on'),
(31,'hack_file','0','on'),
(32,'blog_charset','UTF-8','on'),
(33,'moderation_keys','','off'),
(34,'active_plugins','a:0:{}','on'),
(35,'category_base','','on'),
(36,'ping_sites','https://rpc.pingomatic.com/','on'),
(37,'comment_max_links','2','on'),
(38,'gmt_offset','0','on'),
(39,'default_email_category','1','on'),
(40,'recently_edited','','off'),
(41,'template','Divi','on'),
(42,'stylesheet','Divi','on'),
(43,'comment_registration','0','on'),
(44,'html_type','text/html','on'),
(45,'use_trackback','0','on'),
(46,'default_role','subscriber','on'),
(47,'db_version','60421','on'),
(48,'uploads_use_yearmonth_folders','1','on'),
(49,'upload_path','','on'),
(50,'blog_public','1','on'),
(51,'default_link_category','2','on'),
(52,'show_on_front','page','on'),
(53,'tag_base','','on'),
(54,'show_avatars','1','on'),
(55,'avatar_rating','G','on'),
(56,'upload_url_path','','on'),
(57,'thumbnail_size_w','150','on'),
(58,'thumbnail_size_h','150','on'),
(59,'thumbnail_crop','1','on'),
(60,'medium_size_w','300','on'),
(61,'medium_size_h','300','on'),
(62,'avatar_default','mystery','on'),
(63,'large_size_w','1024','on'),
(64,'large_size_h','1024','on'),
(65,'image_default_link_type','none','on'),
(66,'image_default_size','','on'),
(67,'image_default_align','','on'),
(68,'close_comments_for_old_posts','0','on'),
(69,'close_comments_days_old','14','on'),
(70,'thread_comments','1','on'),
(71,'thread_comments_depth','5','on'),
(72,'page_comments','0','on'),
(73,'comments_per_page','50','on'),
(74,'default_comments_page','newest','on'),
(75,'comment_order','asc','on'),
(76,'sticky_posts','a:0:{}','on'),
(77,'widget_categories','a:0:{}','on'),
(78,'widget_text','a:0:{}','on'),
(79,'widget_rss','a:0:{}','on'),
(80,'uninstall_plugins','a:0:{}','off'),
(81,'timezone_string','','on'),
(82,'page_for_posts','0','on'),
(83,'page_on_front','6','on'),
(84,'default_post_format','0','on'),
(85,'link_manager_enabled','0','on'),
(86,'finished_splitting_shared_terms','1','on'),
(87,'site_icon','0','on'),
(88,'medium_large_size_w','768','on'),
(89,'medium_large_size_h','0','on'),
(90,'wp_page_for_privacy_policy','3','on'),
(91,'show_comments_cookies_opt_in','1','on'),
(92,'admin_email_lifespan','1772384314','on'),
(93,'disallowed_keys','','off'),
(94,'comment_previously_approved','1','on'),
(95,'auto_plugin_theme_update_emails','a:0:{}','off'),
(96,'auto_update_core_dev','enabled','on'),
(97,'auto_update_core_minor','enabled','on'),
(98,'auto_update_core_major','enabled','on'),
(99,'wp_force_deactivated_plugins','a:0:{}','on'),
(100,'wp_attachment_pages_enabled','0','on'),
(101,'initial_db_version','60421','on'),
(102,'ePgN5dhl_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;}}}','on'),
(103,'fresh_site','0','off'),
(104,'user_count','1','off'),
(105,'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;}','auto'),
(106,'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:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}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;}','auto'),
(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.8.2\";s:5:\"files\";a:536:{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:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/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:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:26:\"post-content/style-rtl.css\";i:309;s:30:\"post-content/style-rtl.min.css\";i:310;s:22:\"post-content/style.css\";i:311;s:26:\"post-content/style.min.css\";i:312;s:23:\"post-date/style-rtl.css\";i:313;s:27:\"post-date/style-rtl.min.css\";i:314;s:19:\"post-date/style.css\";i:315;s:23:\"post-date/style.min.css\";i:316;s:27:\"post-excerpt/editor-rtl.css\";i:317;s:31:\"post-excerpt/editor-rtl.min.css\";i:318;s:23:\"post-excerpt/editor.css\";i:319;s:27:\"post-excerpt/editor.min.css\";i:320;s:26:\"post-excerpt/style-rtl.css\";i:321;s:30:\"post-excerpt/style-rtl.min.css\";i:322;s:22:\"post-excerpt/style.css\";i:323;s:26:\"post-excerpt/style.min.css\";i:324;s:34:\"post-featured-image/editor-rtl.css\";i:325;s:38:\"post-featured-image/editor-rtl.min.css\";i:326;s:30:\"post-featured-image/editor.css\";i:327;s:34:\"post-featured-image/editor.min.css\";i:328;s:33:\"post-featured-image/style-rtl.css\";i:329;s:37:\"post-featured-image/style-rtl.min.css\";i:330;s:29:\"post-featured-image/style.css\";i:331;s:33:\"post-featured-image/style.min.css\";i:332;s:34:\"post-navigation-link/style-rtl.css\";i:333;s:38:\"post-navigation-link/style-rtl.min.css\";i:334;s:30:\"post-navigation-link/style.css\";i:335;s:34:\"post-navigation-link/style.min.css\";i:336;s:27:\"post-template/style-rtl.css\";i:337;s:31:\"post-template/style-rtl.min.css\";i:338;s:23:\"post-template/style.css\";i:339;s:27:\"post-template/style.min.css\";i:340;s:24:\"post-terms/style-rtl.css\";i:341;s:28:\"post-terms/style-rtl.min.css\";i:342;s:20:\"post-terms/style.css\";i:343;s:24:\"post-terms/style.min.css\";i:344;s:24:\"post-title/style-rtl.css\";i:345;s:28:\"post-title/style-rtl.min.css\";i:346;s:20:\"post-title/style.css\";i:347;s:24:\"post-title/style.min.css\";i:348;s:26:\"preformatted/style-rtl.css\";i:349;s:30:\"preformatted/style-rtl.min.css\";i:350;s:22:\"preformatted/style.css\";i:351;s:26:\"preformatted/style.min.css\";i:352;s:24:\"pullquote/editor-rtl.css\";i:353;s:28:\"pullquote/editor-rtl.min.css\";i:354;s:20:\"pullquote/editor.css\";i:355;s:24:\"pullquote/editor.min.css\";i:356;s:23:\"pullquote/style-rtl.css\";i:357;s:27:\"pullquote/style-rtl.min.css\";i:358;s:19:\"pullquote/style.css\";i:359;s:23:\"pullquote/style.min.css\";i:360;s:23:\"pullquote/theme-rtl.css\";i:361;s:27:\"pullquote/theme-rtl.min.css\";i:362;s:19:\"pullquote/theme.css\";i:363;s:23:\"pullquote/theme.min.css\";i:364;s:39:\"query-pagination-numbers/editor-rtl.css\";i:365;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:366;s:35:\"query-pagination-numbers/editor.css\";i:367;s:39:\"query-pagination-numbers/editor.min.css\";i:368;s:31:\"query-pagination/editor-rtl.css\";i:369;s:35:\"query-pagination/editor-rtl.min.css\";i:370;s:27:\"query-pagination/editor.css\";i:371;s:31:\"query-pagination/editor.min.css\";i:372;s:30:\"query-pagination/style-rtl.css\";i:373;s:34:\"query-pagination/style-rtl.min.css\";i:374;s:26:\"query-pagination/style.css\";i:375;s:30:\"query-pagination/style.min.css\";i:376;s:25:\"query-title/style-rtl.css\";i:377;s:29:\"query-title/style-rtl.min.css\";i:378;s:21:\"query-title/style.css\";i:379;s:25:\"query-title/style.min.css\";i:380;s:25:\"query-total/style-rtl.css\";i:381;s:29:\"query-total/style-rtl.min.css\";i:382;s:21:\"query-total/style.css\";i:383;s:25:\"query-total/style.min.css\";i:384;s:20:\"query/editor-rtl.css\";i:385;s:24:\"query/editor-rtl.min.css\";i:386;s:16:\"query/editor.css\";i:387;s:20:\"query/editor.min.css\";i:388;s:19:\"quote/style-rtl.css\";i:389;s:23:\"quote/style-rtl.min.css\";i:390;s:15:\"quote/style.css\";i:391;s:19:\"quote/style.min.css\";i:392;s:19:\"quote/theme-rtl.css\";i:393;s:23:\"quote/theme-rtl.min.css\";i:394;s:15:\"quote/theme.css\";i:395;s:19:\"quote/theme.min.css\";i:396;s:23:\"read-more/style-rtl.css\";i:397;s:27:\"read-more/style-rtl.min.css\";i:398;s:19:\"read-more/style.css\";i:399;s:23:\"read-more/style.min.css\";i:400;s:18:\"rss/editor-rtl.css\";i:401;s:22:\"rss/editor-rtl.min.css\";i:402;s:14:\"rss/editor.css\";i:403;s:18:\"rss/editor.min.css\";i:404;s:17:\"rss/style-rtl.css\";i:405;s:21:\"rss/style-rtl.min.css\";i:406;s:13:\"rss/style.css\";i:407;s:17:\"rss/style.min.css\";i:408;s:21:\"search/editor-rtl.css\";i:409;s:25:\"search/editor-rtl.min.css\";i:410;s:17:\"search/editor.css\";i:411;s:21:\"search/editor.min.css\";i:412;s:20:\"search/style-rtl.css\";i:413;s:24:\"search/style-rtl.min.css\";i:414;s:16:\"search/style.css\";i:415;s:20:\"search/style.min.css\";i:416;s:20:\"search/theme-rtl.css\";i:417;s:24:\"search/theme-rtl.min.css\";i:418;s:16:\"search/theme.css\";i:419;s:20:\"search/theme.min.css\";i:420;s:24:\"separator/editor-rtl.css\";i:421;s:28:\"separator/editor-rtl.min.css\";i:422;s:20:\"separator/editor.css\";i:423;s:24:\"separator/editor.min.css\";i:424;s:23:\"separator/style-rtl.css\";i:425;s:27:\"separator/style-rtl.min.css\";i:426;s:19:\"separator/style.css\";i:427;s:23:\"separator/style.min.css\";i:428;s:23:\"separator/theme-rtl.css\";i:429;s:27:\"separator/theme-rtl.min.css\";i:430;s:19:\"separator/theme.css\";i:431;s:23:\"separator/theme.min.css\";i:432;s:24:\"shortcode/editor-rtl.css\";i:433;s:28:\"shortcode/editor-rtl.min.css\";i:434;s:20:\"shortcode/editor.css\";i:435;s:24:\"shortcode/editor.min.css\";i:436;s:24:\"site-logo/editor-rtl.css\";i:437;s:28:\"site-logo/editor-rtl.min.css\";i:438;s:20:\"site-logo/editor.css\";i:439;s:24:\"site-logo/editor.min.css\";i:440;s:23:\"site-logo/style-rtl.css\";i:441;s:27:\"site-logo/style-rtl.min.css\";i:442;s:19:\"site-logo/style.css\";i:443;s:23:\"site-logo/style.min.css\";i:444;s:27:\"site-tagline/editor-rtl.css\";i:445;s:31:\"site-tagline/editor-rtl.min.css\";i:446;s:23:\"site-tagline/editor.css\";i:447;s:27:\"site-tagline/editor.min.css\";i:448;s:26:\"site-tagline/style-rtl.css\";i:449;s:30:\"site-tagline/style-rtl.min.css\";i:450;s:22:\"site-tagline/style.css\";i:451;s:26:\"site-tagline/style.min.css\";i:452;s:25:\"site-title/editor-rtl.css\";i:453;s:29:\"site-title/editor-rtl.min.css\";i:454;s:21:\"site-title/editor.css\";i:455;s:25:\"site-title/editor.min.css\";i:456;s:24:\"site-title/style-rtl.css\";i:457;s:28:\"site-title/style-rtl.min.css\";i:458;s:20:\"site-title/style.css\";i:459;s:24:\"site-title/style.min.css\";i:460;s:26:\"social-link/editor-rtl.css\";i:461;s:30:\"social-link/editor-rtl.min.css\";i:462;s:22:\"social-link/editor.css\";i:463;s:26:\"social-link/editor.min.css\";i:464;s:27:\"social-links/editor-rtl.css\";i:465;s:31:\"social-links/editor-rtl.min.css\";i:466;s:23:\"social-links/editor.css\";i:467;s:27:\"social-links/editor.min.css\";i:468;s:26:\"social-links/style-rtl.css\";i:469;s:30:\"social-links/style-rtl.min.css\";i:470;s:22:\"social-links/style.css\";i:471;s:26:\"social-links/style.min.css\";i:472;s:21:\"spacer/editor-rtl.css\";i:473;s:25:\"spacer/editor-rtl.min.css\";i:474;s:17:\"spacer/editor.css\";i:475;s:21:\"spacer/editor.min.css\";i:476;s:20:\"spacer/style-rtl.css\";i:477;s:24:\"spacer/style-rtl.min.css\";i:478;s:16:\"spacer/style.css\";i:479;s:20:\"spacer/style.min.css\";i:480;s:20:\"table/editor-rtl.css\";i:481;s:24:\"table/editor-rtl.min.css\";i:482;s:16:\"table/editor.css\";i:483;s:20:\"table/editor.min.css\";i:484;s:19:\"table/style-rtl.css\";i:485;s:23:\"table/style-rtl.min.css\";i:486;s:15:\"table/style.css\";i:487;s:19:\"table/style.min.css\";i:488;s:19:\"table/theme-rtl.css\";i:489;s:23:\"table/theme-rtl.min.css\";i:490;s:15:\"table/theme.css\";i:491;s:19:\"table/theme.min.css\";i:492;s:24:\"tag-cloud/editor-rtl.css\";i:493;s:28:\"tag-cloud/editor-rtl.min.css\";i:494;s:20:\"tag-cloud/editor.css\";i:495;s:24:\"tag-cloud/editor.min.css\";i:496;s:23:\"tag-cloud/style-rtl.css\";i:497;s:27:\"tag-cloud/style-rtl.min.css\";i:498;s:19:\"tag-cloud/style.css\";i:499;s:23:\"tag-cloud/style.min.css\";i:500;s:28:\"template-part/editor-rtl.css\";i:501;s:32:\"template-part/editor-rtl.min.css\";i:502;s:24:\"template-part/editor.css\";i:503;s:28:\"template-part/editor.min.css\";i:504;s:27:\"template-part/theme-rtl.css\";i:505;s:31:\"template-part/theme-rtl.min.css\";i:506;s:23:\"template-part/theme.css\";i:507;s:27:\"template-part/theme.min.css\";i:508;s:30:\"term-description/style-rtl.css\";i:509;s:34:\"term-description/style-rtl.min.css\";i:510;s:26:\"term-description/style.css\";i:511;s:30:\"term-description/style.min.css\";i:512;s:27:\"text-columns/editor-rtl.css\";i:513;s:31:\"text-columns/editor-rtl.min.css\";i:514;s:23:\"text-columns/editor.css\";i:515;s:27:\"text-columns/editor.min.css\";i:516;s:26:\"text-columns/style-rtl.css\";i:517;s:30:\"text-columns/style-rtl.min.css\";i:518;s:22:\"text-columns/style.css\";i:519;s:26:\"text-columns/style.min.css\";i:520;s:19:\"verse/style-rtl.css\";i:521;s:23:\"verse/style-rtl.min.css\";i:522;s:15:\"verse/style.css\";i:523;s:19:\"verse/style.min.css\";i:524;s:20:\"video/editor-rtl.css\";i:525;s:24:\"video/editor-rtl.min.css\";i:526;s:16:\"video/editor.css\";i:527;s:20:\"video/editor.min.css\";i:528;s:19:\"video/style-rtl.css\";i:529;s:23:\"video/style-rtl.min.css\";i:530;s:15:\"video/style.css\";i:531;s:19:\"video/style.min.css\";i:532;s:19:\"video/theme-rtl.css\";i:533;s:23:\"video/theme-rtl.min.css\";i:534;s:15:\"video/theme.css\";i:535;s:19:\"video/theme.min.css\";}}','on'),
(125,'nonce_key','^f^TM*gE::9B,@.W(O%FI:l_*{~Hy_r!/kIuhBpx2ioD5c$Z>Te@JDoy8tmEj7W`','off'),
(126,'nonce_salt','u1,1ZHZMub`e$&_Zt98>:OSA0-CyE*Nb?H#?Q+#`>jE%R.I|QQqIxS5 ks(v#5_a','off'),
(127,'theme_mods_twentytwentyfive','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1756832924;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\";}}}}','off'),
(128,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"df0c8c5dc02b9086e5e141ed0671c998\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),
(129,'recovery_keys','a:0:{}','off'),
(130,'_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.8.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.2\";s:7:\"version\";s:5:\"6.8.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1757480817;s:15:\"version_checked\";s:5:\"6.8.2\";s:12:\"translations\";a:0:{}}','off'),
(137,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1757530784;s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"4.27.4\";s:16:\"twentytwentyfive\";s:3:\"1.3\";s:16:\"twentytwentyfour\";s:3:\"1.3\";s:17:\"twentytwentythree\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.3.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.27.4\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:143:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=cc3ae5ce520e362eb101d404682eb70a7a0c49e9&username=Ducimus23\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"translations\";a:0:{}}','off'),
(138,'current_theme','Divi','auto'),
(139,'theme_switched','','auto'),
(144,'et_core_version','4.27.4','auto'),
(146,'et_divi','a:188:{s:9:\"divi_logo\";s:56:\"https://jestley.com/wp-content/uploads/2025/09/BC3Co.png\";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.27.4\";s:31:\"divi_previous_installed_version\";s:6:\"4.27.3\";s:29:\"divi_latest_installed_version\";s:6:\"4.27.4\";s:27:\"divi_skip_font_subset_force\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:23:\"builder_custom_defaults\";a: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: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:32:\"et_pb_woocommerce_product_layout\";s:16:\"et_right_sidebar\";s:29:\"et_pb_woocommerce_page_layout\";s:21:\"et_build_from_scratch\";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:3:\"off\";s:24:\"et_enable_classic_editor\";s:3:\"off\";s:11:\"logo_height\";i:64;s:21:\"primary_nav_font_size\";i:16;s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:12:\"header_email\";s:14:\"hello@divi.com\";s:24:\"show_header_social_icons\";b:0;s:12:\"phone_number\";s:14:\"(255) 352-6258\";s:12:\"accent_color\";s:7:\"#ff3f19\";s:22:\"secondary_accent_color\";s:7:\"#a00808\";s:16:\"et_global_colors\";a:11:{s:41:\"gcid-2ba1efb6-4031-47e4-a58d-f8150d56f0f2\";a:2:{s:5:\"color\";s:16:\"rgba(0,0,0,0.06)\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\";a:2:{s:5:\"color\";s:7:\"#06c8ff\";s:6:\"active\";s:2:\"no\";}s:41:\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\";a:2:{s:5:\"color\";s:7:\"#8300e9\";s:6:\"active\";s:2:\"no\";}s:41:\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\";a:2:{s:5:\"color\";s:7:\"#333333\";s:6:\"active\";s:2:\"no\";}s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";a:2:{s:5:\"color\";s:21:\"rgba(255,255,255,0.6)\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\";a:2:{s:5:\"color\";s:7:\"#f7f7f7\";s:6:\"active\";s:2:\"no\";}s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";a:2:{s:5:\"color\";s:16:\"rgba(0,0,0,0.12)\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";a:2:{s:5:\"color\";s:15:\"rgba(0,0,0,0.6)\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";a:2:{s:5:\"color\";s:7:\"#e6e2dd\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";a:2:{s:5:\"color\";s:7:\"#191919\";s:6:\"active\";s:3:\"yes\";}s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";a:2:{s:5:\"color\";s:21:\"rgba(255,255,255,0.3)\";s:6:\"active\";s:3:\"yes\";}}s:13:\"content_width\";i:1440;s:14:\"body_font_size\";i:16;s:16:\"body_font_height\";d:1.8;s:12:\"heading_font\";s:9:\"Gothic A1\";s:20:\"phone_body_font_size\";i:15;s:21:\"tablet_body_font_size\";i:15;s:12:\"header_color\";s:7:\"#000000\";s:9:\"body_font\";s:4:\"Lato\";s:16:\"body_font_weight\";s:3:\"400\";s:10:\"font_color\";s:16:\"rgba(0,0,0,0.75)\";s:24:\"all_buttons_border_color\";s:19:\"rgba(255,255,255,0)\";s:25:\"all_buttons_border_radius\";i:20;s:22:\"all_buttons_font_style\";s:14:\"bold|uppercase\";s:21:\"all_buttons_font_size\";i:14;s:25:\"all_buttons_selected_icon\";s:1:\"&\";s:22:\"all_buttons_icon_hover\";s:2:\"no\";s:24:\"all_buttons_border_width\";i:1;s:13:\"wp_custom_css\";s:0:\"\";s:15:\"divi_custom_css\";s:0:\"\";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:5:\"false\";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:7:\"d, m, 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: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: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: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:122;s:27:\"et_fb_pref_modal_position_y\";i:267;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;}','auto'),
(147,'theme_mods_Divi','a:4:{s:18:\"custom_css_post_id\";i:54;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";}','auto'),
(148,'et_divi_builder_presets_history_meta','a:1:{s:5:\"index\";i:4;}','off'),
(149,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(150,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(151,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(152,'et_safe_mode_plugins_allowlist','a:9:{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:23:\"divi-dash/divi-dash.php\";i:5;s:27:\"ari-adminer/ari-adminer.php\";i:6;s:31:\"query-monitor/query-monitor.php\";i:7;s:27:\"woocommerce/woocommerce.php\";i:8;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','auto'),
(153,'et_support_center_installed','true','auto'),
(154,'et_images_temp_folder','/home/wsweb680/public_html/wp-content/uploads/et_temp','auto'),
(155,'et_schedule_clean_images_last_time','1757437739','auto'),
(156,'et_bfb_settings','a:2:{s:10:\"enable_bfb\";s:2:\"on\";s:10:\"toggle_bfb\";s:2:\"on\";}','auto'),
(157,'_transient_et_builder_show_bfb_welcome_modal','1','on'),
(158,'auto_update_themes','a:4:{i:0;s:4:\"Divi\";i:1;s:16:\"twentytwentyfive\";i:2;s:16:\"twentytwentyfour\";i:3;s:17:\"twentytwentythree\";}','off'),
(163,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','auto'),
(164,'et_divi_builder_global_presets_ng','O:8:\"stdClass\":71:{s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Section Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"db011b86-ee50-4be9-a091-b82566a64dcd\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"24dbf531-64ed-4d1b-840e-659c6e3a9b74\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"362ada36-891f-4be2-b115-0ee19aadf10c\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:16:\"background_color\";s:7:\"#000000\";}}s:36:\"301e8613-44f5-4bf4-9aa8-7c7ad262b106\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"64731693-a92a-40b4-9e40-0874d41d58f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#000000 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:2:\"{}\";}}}s:7:\"default\";s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";}s:13:\"et_pb_heading\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Heading Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Subheading\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:11:\"title_level\";s:2:\"h4\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"14px\";s:22:\"title_font_size_tablet\";s:4:\"13px\";s:21:\"title_font_size_phone\";s:4:\"12px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:6:\"0.08em\";s:17:\"title_line_height\";s:5:\"1.6em\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 2\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h2\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"7dc66019-4936-4070-a021-04afee121534\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 3\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h3\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 4\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h4\";s:15:\"title_font_size\";s:4:\"31px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 5\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h5\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 6\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h6\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";}s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Text Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";}}s:36:\"30b0cf31-fbc5-465c-beb7-b33ed988449b\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}s:36:\"b8fc1358-9f09-46b7-9534-de79de7fbe3b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:16:\"text_line_height\";s:5:\"1.8em\";s:9:\"link_font\";s:8:\"||||||||\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":132:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}}s:7:\"default\";s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":11:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Button Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:18:\"global_colors_info\";s:2:\"{}\";}}s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:42:\"{\"gcid-primary-color\":[\"button_bg_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:9:\"off|hover\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Primary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:73:\"{\"gcid-primary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Primary Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"1b25a799-02b0-4096-b12f-dfe461045ebd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Secondary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"button_bg_color\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"da11c078-ec2d-4b1f-8568-5d5fbf909983\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Secondary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:75:\"{\"gcid-secondary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:20:\"gcid-secondary-color\";}}s:36:\"aea6612e-fe2b-464e-8d62-d5d38604b99c\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Black\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"1c051a38-3495-4819-a920-8f590ba49d01\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Black Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:18:\"global_colors_info\";s:78:\"{\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"8f954a0a-398e-40f7-a7c5-bbf546dbeff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Black Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:18:\"global_colors_info\";s:51:\"{\"gcid-primary-color\":[\"button_text_color__hover\"]}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:17:\"button_text_color\";s:7:\"#000000\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"4f331d65-dd4c-4e27-bcc2-6b4badd503d5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance White\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:9:\"off|hover\";}}s:36:\"3b6f0607-3907-457d-803f-df7639345ab7\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance White Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:146:\"{\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\":[\"button_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}}s:7:\"default\";s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:31:\"Freelance Contact Form Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:18:\"global_colors_info\";s:86:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"9255404c-899f-4e8e-8b42-47eaf97b334b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":116:{s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"title_level\";s:2:\"h1\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:32:\"button_text_color__hover_enabled\";s:11:\"off|desktop\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:30:\"Freelance Email Optin Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":139:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:105:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"bf8f2432-2198-42e1-be3e-2cab1a3faca1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:4:\"dark\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Blurb Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"64px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"12270984-f7d3-4488-99b8-09529e67403d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Hover\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:16:\"image_icon_width\";s:4:\"40px\";s:17:\"header_text_color\";s:19:\"RGBA(255,255,255,0)\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:14:\"custom_padding\";s:27:\"40%|40px|40%|40px|true|true\";s:21:\"custom_padding_tablet\";s:22:\"|30px||30px|false|true\";s:20:\"custom_padding_phone\";s:22:\"|20px||20px|false|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-primary-color\":[\"icon_color__hover\"]}\";s:10:\"icon_color\";s:19:\"RGBA(255,255,255,0)\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:14:\"icon_alignment\";s:4:\"left\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:16:\"background_blend\";s:8:\"multiply\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:16:\"box_shadow_style\";s:7:\"preset3\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";}}s:36:\"b8ea676a-bda4-461b-8fe0-8f1979a72473\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.25.2\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:2:\"{}\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"image_icon_width\";s:4:\"64px\";}}s:36:\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":111:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"20px\";s:17:\"content_max_width\";s:4:\"100%\";s:12:\"header_level\";s:2:\"h4\";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:8:\"on|phone\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.6em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"14px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:10:\"icon_color\";s:22:\"rgba(255,255,255,0.32)\";s:14:\"icon_alignment\";s:4:\"left\";}}}s:7:\"default\";s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Blog Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Dark Grid\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":114:{s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"show_more\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"17px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"border_color_all\";s:7:\"#000000\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";}}s:36:\"16c411e2-07e5-41c0-bfea-c03f4cf94cb5\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Dark Fullwidth\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":115:{s:9:\"show_more\";s:2:\"on\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:9:\"fullwidth\";s:2:\"on\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:16:\"border_color_all\";s:7:\"#000000\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";}}}s:7:\"default\";s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";}s:17:\"et_pb_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:30:\"Freelance Post Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":147:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:16:\"background_color\";s:7:\"#0000ff\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"use_bg_overlay\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"meta_font_size\";s:4:\"16px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:16:\"meta_line_height\";s:3:\"1em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:13:\"content_width\";s:4:\"auto\";s:17:\"content_max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:4:\"auto\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:8:\"relative\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:133:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";}}}s:7:\"default\";s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Freelance Accordion Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:18:\"global_colors_info\";s:91:\"{\"gcid-primary-color\":[\"body_quote_text_color\"],\"gcid-heading-color\":[\"toggle_text_color\"]}\";}}s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\",\"icon_color\"],\"gcid-heading-color\":[\"toggle_text_color\"]}\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:16:\"border_color_all\";s:7:\"#000000\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";}}}s:7:\"default\";s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";}s:20:\"et_pb_accordion_item\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":1:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Accordion Preset 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:14:\"custom_padding\";s:27:\"30px|0px|30px|0px|true|true\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_toggle\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Toggle Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:18:\"global_colors_info\";s:133:\"{\"gcid-secondary-color\":[\"open_icon_color\"],\"gcid-primary-color\":[\"body_quote_text_color\"],\"gcid-heading-color\":[\"title_text_color\"]}\";}}s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:18:\"global_colors_info\";s:56:\"{\"gcid-primary-color\":[\"quote_text_color\",\"icon_color\"]}\";s:15:\"open_icon_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";s:14:\"custom_padding\";s:25:\"30px||30px|0px|true|false\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";}}}s:7:\"default\";s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";}s:13:\"et_pb_divider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Divider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:14:\"divider_weight\";s:3:\"2px\";}}}s:7:\"default\";s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";}s:20:\"et_pb_number_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Number Counter Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:44:\"{\"gcid-heading-color\":[\"number_text_color\"]}\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:8:\"on|phone\";s:23:\"number_font_size_tablet\";s:4:\"32px\";}}s:36:\"3a23276e-b2b0-49e6-9594-6701dcdb3a27\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:17:\"number_text_color\";s:7:\"#FFFFFF\";s:16:\"number_font_size\";s:4:\"50px\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";}}}s:7:\"default\";s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";}s:10:\"et_pb_icon\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Icon Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"64px\";}}s:36:\"7c5d6aa5-e119-4abc-a9af-ca66274d650c\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"32px\";}}}s:7:\"default\";s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";}s:25:\"et_pb_social_media_follow\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"Freelance Social Media Follow Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#000000\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}s:36:\"c8d5b2aa-c955-470e-ae32-005f9e1e409b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#FFFFFF\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}}s:7:\"default\";s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";}s:33:\"et_pb_social_media_follow_network\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Social Network Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Freelance No Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":25:{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:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"body_text_color\"],\"gcid-heading-color\":[\"header_text_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";}s:11:\"et_pb_image\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Image Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"b01c845f-39f9-4f44-9643-e98852a8859f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"use_overlay\";s:2:\"on\";s:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"global_colors_info\";s:69:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"hover_overlay_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_video_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:31:\"Freelance Video Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"8e6f008e-8c87-46d7-b368-6873084fc353\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:18:\"show_image_overlay\";s:2:\"on\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_audio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Audio Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";}s:9:\"et_pb_cta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Call To Action Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";}s:21:\"et_pb_countdown_timer\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Countdown Timer Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:84:\"{\"gcid-heading-color\":[\"numbers_text_color\"],\"gcid-body-color\":[\"label_text_color\"]}\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";}s:20:\"et_pb_circle_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Circle Counter Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"circle_color_alpha\";s:1:\"1\";s:18:\"global_colors_info\";s:105:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"circle_color\"],\"gcid-heading-color\":[\"number_text_color\"]}\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";}s:14:\"et_pb_counters\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:31:\"Freelance Bar Counters Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:108:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"]}\";s:16:\"background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"background_enable_color\";s:2:\"on\";s:10:\"title_font\";s:65:\"--et_global_heading_font|--et_global_heading_font_weight||on|||||\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:15:\"title_font_size\";s:4:\"14px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";}s:11:\"et_pb_login\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Login Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";}s:12:\"et_pb_search\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Search Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"button_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:25:\"1em|1em|1em|1em|true|true\";s:12:\"border_radii\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:45:\"{\"gcid-body-color\":[\"form_field_text_color\"]}\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"1px\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";}s:20:\"et_pb_pricing_tables\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Pricing Tables Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"text_orientation\";s:6:\"center\";s:14:\"custom_padding\";s:19:\"30px||||false|false\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:16:\"border_width_all\";s:3:\"0px\";s:18:\"global_colors_info\";s:299:\"{\"gcid-body-color\":[\"bullet_color\",\"body_text_color\",\"currency_frequency_text_color\"],\"gcid-heading-color\":[\"header_text_color\",\"subheader_text_color\",\"price_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"featured_table_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:18:\"gcid-heading-color\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";}s:10:\"et_pb_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Menu Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";}}s:36:\"89db62a1-3898-47f0-91e7-3a2339cd00f5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":95:{s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"menu_style\";s:12:\"left_aligned\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:15:\"logo_max_height\";s:4:\"64px\";s:15:\"cart_icon_color\";s:7:\"#FFFFFF\";s:17:\"search_icon_color\";s:7:\"#FFFFFF\";s:15:\"menu_icon_color\";s:7:\"#FFFFFF\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:7:\"#FFFFFF\";s:14:\"menu_font_size\";s:4:\"16px\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:18:\"global_colors_info\";s:130:\"{\"gcid-body-color\":[\"dropdown_menu_text_color\",\"mobile_menu_text_color\"],\"gcid-primary-color\":[\"dropdown_menu_active_link_color\"]}\";}}}s:7:\"default\";s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";}s:16:\"et_pb_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:29:\"Freelance Post Title Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:18:\"global_colors_info\";s:2:\"{}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}s:36:\"62a478a3-7ef6-49d6-9539-6701b57634c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":76:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:9:\"meta_font\";s:13:\"|700||on|||||\";}}}s:7:\"default\";s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";}s:13:\"et_pb_sidebar\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Sidebar Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"show_border\";s:3:\"off\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";}s:14:\"et_pb_post_nav\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Post Navigation Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"title_font\";s:13:\"|700||on|||||\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}s:36:\"eb4ff970-88a1-4ee4-b6a0-c1e2a909623b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":59:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";}s:14:\"et_pb_comments\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:27:\"Freelance Comments Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:15:\"meta_text_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"6c4b3436-ad9f-4943-8d4f-b230b960eff4\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:17:\"background_layout\";s:4:\"dark\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";}s:17:\"et_pb_team_member\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Person Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";}s:17:\"et_pb_testimonial\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:30:\"Freelance Testimonial Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:18:\"global_colors_info\";s:154:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\"],\"gcid-heading-color\":[\"author_text_color\"],\"gcid-secondary-color\":[\"quote_icon_color\"]}\";}}s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:154:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\"],\"gcid-heading-color\":[\"author_text_color\"],\"gcid-secondary-color\":[\"quote_icon_color\"]}\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:20:\"use_background_color\";s:3:\"off\";}}}s:7:\"default\";s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";}s:26:\"et_pb_filterable_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Filterable Portfolio Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";}s:13:\"et_pb_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Gallery Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";}s:15:\"et_pb_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Freelance Portfolio Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";}s:10:\"et_pb_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Tabs Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"active_tab_text_color\",\"body_quote_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";}s:20:\"et_pb_fullwidth_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Fullwidth Menu Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";}}}s:7:\"default\";s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";}s:26:\"et_pb_fullwidth_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Fullwidth Post Title Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:22:\"60px||60px||true|false\";s:26:\"custom_padding_last_edited\";s:9:\"on|tablet\";s:21:\"custom_padding_tablet\";s:22:\"30px||30px||true|false\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";}s:22:\"et_pb_fullwidth_header\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Freelance Fullwidth Header Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":50:{s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:22:\"12vw||12vw||true|false\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:18:\"global_colors_info\";s:155:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_overlay_color\"],\"gcid-primary-color\":[\"button_one_bg_color__hover\",\"button_two_bg_color__hover\"]}\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";}s:25:\"et_pb_fullwidth_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"Freelance Fullwidth Portfolio Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";}s:27:\"et_pb_fullwidth_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:40:\"Freelance Fullwidth Post Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";}s:22:\"et_pb_fullwidth_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Freelance Fullwidth Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"ae279531-550a-4732-9546-dae9056b368f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"ae279531-550a-4732-9546-dae9056b368f\";}s:20:\"et_pb_wc_cart_notice\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:29:\"Freelance Woo Notice Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:18:\"global_colors_info\";s:463:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"title_link_text_color\"]}\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"ee785808-4221-48d1-8c31-1f15776922f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"fields_width\";s:7:\"default\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:15:\"title_font_size\";s:4:\"19px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:27:\"0em|0em|2em|0em|false|false\";s:14:\"custom_padding\";s:31:\"15px|15px|15px|15px|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:337:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"],\"gcid-primary-color\":[\"title_link_text_color\",\"button_bg_color\"]}\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"title_font_size_tablet\";s:4:\"15px\";s:21:\"title_font_size_phone\";s:4:\"14px\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";}}}s:7:\"default\";s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";}s:19:\"et_pb_wc_breadcrumb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Woo Breadcrumbs Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:83:\"{\"gcid-primary-color\":[\"link_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"link_text_color\";s:18:\"gcid-primary-color\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}s:36:\"dbf1d986-41fd-43f8-992a-cd5577e28e10\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:14:\"link_font_size\";s:4:\"14px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"link_font\";s:10:\"||||on||||\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";}s:14:\"et_pb_wc_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Woo Product Title Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:18:\"header_line_height\";s:5:\"1.3em\";s:16:\"header_font_size\";s:4:\"52px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"19857a48-497c-4a71-9e18-cd3d42ca9aa0\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":63:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";}s:15:\"et_pb_wc_rating\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:37:\"Freelance Woo Product Rating Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:87:\"{\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:14:\"body_font_size\";s:4:\"13px\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";}}s:36:\"84120d40-5261-407a-8d37-0ded40340981\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:6:\"inline\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:46:\"{\"gcid-secondary-color\":[\"rating_text_color\"]}\";}}}s:7:\"default\";s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";}s:20:\"et_pb_wc_description\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:42:\"Freelance Woo Product Description Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:18:\"global_colors_info\";s:110:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"24px\";s:27:\"body_quote_font_size_tablet\";s:4:\"20px\";s:26:\"body_quote_font_size_phone\";s:4:\"16px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:15:\"quote_font_size\";s:4:\"30px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";}}s:36:\"c8222a6f-3f16-4d95-86f9-cc46f51154cd\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":110:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";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:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"26px\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:3:\"1em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"22px\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:3:\"1em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"18px\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:3:\"1em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"16px\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:3:\"1em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"14px\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:3:\"1em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:18:\"global_colors_info\";s:68:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";}}}s:7:\"default\";s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";}s:14:\"et_pb_wc_price\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Woo Product Price Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:18:\"global_colors_info\";s:42:\"{\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:16:\"body_line_height\";s:5:\"1.4em\";}}s:36:\"bdcee4d2-4371-4914-81e3-2208e92907a7\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:16:\"body_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";}s:20:\"et_pb_wc_add_to_cart\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:42:\"Freelance Woo Product Add To Cart Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:18:\"global_colors_info\";s:425:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\",\"fields_background_color\",\"dropdown_menus_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-body-color\":[\"fields_text_color\",\"dropdown_menus_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-heading-color\":[\"field_label_text_color\"]}\";s:23:\"fields_background_color\";s:19:\"rgba(255,255,255,0)\";s:17:\"fields_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#000000\";s:25:\"dropdown_menus_text_color\";s:15:\"gcid-body-color\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"field_label_text_color\";s:18:\"gcid-heading-color\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"93f79e07-81c5-4820-8711-c53547d99bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":120:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:256:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"431f40ed-e0ca-4212-b551-02a113a1b9ab\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:16:\"background_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:506:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"form_field_background_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";}s:13:\"et_pb_wc_meta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Freelance Woo Product Meta Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:66:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all\"]}\";s:16:\"border_color_all\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";}}s:36:\"cf69f32d-b224-4142-b75c-14ce15a49f95\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:5:{s:18:\"global_colors_info\";s:66:\"{\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all\"]}\";s:16:\"border_color_all\";s:21:\"rgba(255,255,255,0.6)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";}}}s:7:\"default\";s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";}s:15:\"et_pb_wc_images\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:37:\"Freelance Woo Product Images Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:130:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"rating_text_color\",\"icon_hover_color\"],\"gcid-secondary-color\":[\"sale_badge_color\"]}\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";}s:16:\"et_pb_wc_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"Freelance Woo Product Gallery Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"caption_text_color\";s:7:\"#000000\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}s:36:\"0d066721-06f7-476b-ae82-e57ce5ec69b3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:9:\"fullwidth\";s:3:\"off\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";}s:24:\"et_pb_wc_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:42:\"Freelance Woo Product Information Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"attribute_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_bottom_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"3c333308-c986-4d69-9b7b-4686f240943d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:10:\"show_title\";s:2:\"on\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:211:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_bottom_table_cell\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";}s:13:\"et_pb_wc_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Freelance Woo Product Tabs Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"active_tab_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";}s:25:\"et_pb_wc_related_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Woo Related Products Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"e6382043-c9e0-4441-ba03-e7df51b3001e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:215:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";}s:10:\"et_pb_shop\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:31:\"Freelance Woo Products Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:15:\"show_pagination\";s:2:\"on\";s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"1512ab9e-8861-43c3-8f8e-5799a3b94980\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":16:{s:15:\"show_pagination\";s:2:\"on\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";}s:20:\"et_pb_wc_cross_sells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Woo Cross Sells Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:43:\"{\"gcid-heading-color\":[\"price_text_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ffbbfb57-7d10-4b8a-8b50-24275510fe29\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";}s:16:\"et_pb_wc_upsells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:37:\"Freelance Woo Product Upsell Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"a095913c-59c5-4d31-8e2b-957477833677\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";}s:16:\"et_pb_wc_reviews\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"Freelance Woo Product Reviews Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"9daec761-3963-4984-81cf-147432a59eba\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:16:\"rating_font_size\";s:2:\"14\";s:18:\"global_colors_info\";s:424:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"rating_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"meta_text_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"a8191bd4-7afd-4a27-861f-ae38f8ce63ff\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:291:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"cb94fb63-b4d6-4a73-9e61-6b83734df148\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:518:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"border_color_all_fields\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"9daec761-3963-4984-81cf-147432a59eba\";}s:22:\"et_pb_wc_cart_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Woo Cart Products Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"global_colors_info\";s:555:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-heading-color\":[\"table_header_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-secondary-color\":[\"button_bg_color\",\"disabled_button_bg_color\"]}\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#FFFFFF\";s:24:\"disabled_button_bg_color\";s:20:\"gcid-secondary-color\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:25:\"table_cell_custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";}}s:36:\"9b7624b3-f8ce-4c6d-bbc3-8ff588f5bd6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}s:36:\"1d9b1177-c744-467f-863f-7f711460a015\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";}s:20:\"et_pb_wc_cart_totals\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Woo Cart Totals Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":24:{s:18:\"global_colors_info\";s:412:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\",\"placeholder_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#000000\";s:17:\"placeholder_color\";s:15:\"gcid-body-color\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7b8f0002-0b6c-4d81-a08d-6103808ac99e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:230:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"f20c05a4-0487-4f8e-b24f-261076d3acb3\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:438:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";}s:25:\"et_pb_wc_checkout_billing\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Woo Checkout Billing Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:541:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"fca9a8d3-2c75-4825-9fec-a1fa8960f08a\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:388:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"e0b09b91-6bae-4a01-af45-5d450c481744\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"global_colors_info\";s:482:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"tooltip_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";}s:26:\"et_pb_wc_checkout_shipping\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:40:\"Freelance Woo Checkout Shipping Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:385:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"4ecbf864-2a10-4b37-af97-bcd9e2531a28\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"6927a119-5d2a-4600-8713-40c06fe9f530\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";}s:33:\"et_pb_wc_checkout_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:43:\"Freelance Woo Checkout Information Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:306:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"a36b9eed-c2ec-47a5-87d1-ff5381269b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:214:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"031f6833-57f8-49c5-98ac-029ad54f299a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:394:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";}s:31:\"et_pb_wc_checkout_order_details\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Woo Checkout Details Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:18:\"global_colors_info\";s:395:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"8a28b75d-be0b-46f0-b7a3-405f1264bfd9\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:346:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}s:36:\"1a129abb-e55d-4993-ba36-846ee365ed43\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:428:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";}s:30:\"et_pb_wc_checkout_payment_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Woo Checkout Payment Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#000000\";s:18:\"tooltip_text_color\";s:7:\"#FFFFFF\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:296:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"]}\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"239f7700-2611-4422-85b4-5ce1c7714740\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:280:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7bae7924-2970-40cc-b095-b2c098d2afc5\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:564:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";}s:12:\"et_pb_column\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":9:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Column Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"9c2821aa-f112-49a0-bd92-423c1bf5b77b\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"be11a423-1b48-4cdb-ab89-d037068b25f8\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"b1f5171c-6eeb-4dee-972d-2f4897728bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"aa81cf7c-a285-4ec6-85e0-66a5153af803\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"a2103633-9b0a-4636-ab6c-c3beb2d72e5b\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Black Border\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";}}s:36:\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"b83c5c03-e41d-49f4-9a5a-dadd3193027a\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"d0cbb859-06b9-439f-8115-bd412d324f57\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:9:\"et_pb_row\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Freelance Row Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"255f8d16-86e7-4ff7-937c-0c73ee5aa6f0\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"995dc606-35fc-48dd-8049-0a97e6fdd6d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"37c9b83a-6d05-4791-9b32-24aaf57da69e\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"5eed47bd-1ab1-47bd-9483-0814320c162b\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"0a1f0260-8b3b-4b1e-aaaf-2be5b75bbd07\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"b7979650-614b-4293-b430-4f509785ab9a\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"7b64b6a8-b512-4372-82ac-81803dc45605\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}}','off'),
(169,'category_children','a:0:{}','auto'),
(174,'auto_update_plugins','a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}','off'),
(175,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','auto'),
(176,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','auto'),
(177,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','auto'),
(178,'et_support_center_setup_done','processed','auto'),
(191,'can_compress_scripts','1','on'),
(197,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),
(198,'recently_activated','a:1:{s:19:\"akismet/akismet.php\";i:1756835598;}','off'),
(204,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(205,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1757529555;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','off'),
(206,'et_account_status','active','off'),
(207,'_site_transient_et_update_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:3:\"5.5\";s:9:\"hello.php\";s:5:\"1.7.2\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1756835588;}','off'),
(208,'_site_transient_et_update_themes','O:8:\"stdClass\":4:{s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"4.27.4\";s:16:\"twentytwentyfive\";s:3:\"1.3\";s:16:\"twentytwentyfour\";s:3:\"1.3\";s:17:\"twentytwentythree\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.27.4\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:143:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=cc3ae5ce520e362eb101d404682eb70a7a0c49e9&username=Ducimus23\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"last_checked\";i:1757530784;}','off'),
(215,'_transient_timeout_et_core_version','1757615954','off'),
(216,'_transient_et_core_version','4.27.4','off'),
(217,'_transient_et_updated_plugins_data','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1756835588;}','on'),
(220,'et_automatic_updates_options','a:2:{s:8:\"username\";s:9:\"Ducimus23\";s:7:\"api_key\";s:40:\"cc3ae5ce520e362eb101d404682eb70a7a0c49e9\";}','off'),
(225,'et_support_site_id','VFTE^I@Qo+8f#yxM9ln-','auto'),
(233,'finished_updating_comment_type','1','auto'),
(242,'et_divi_builder_presets_history_item_0','O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":71:{s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Section Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:2:{s:16:\"background_color\";s:7:\"#e6e2dd\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"db011b86-ee50-4be9-a091-b82566a64dcd\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:2:{s:16:\"background_color\";s:7:\"#2ea3f2\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"24dbf531-64ed-4d1b-840e-659c6e3a9b74\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:2:{s:16:\"background_color\";s:7:\"#2ea3f2\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"362ada36-891f-4be2-b115-0ee19aadf10c\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:16:\"background_color\";s:7:\"#000000\";}}s:36:\"301e8613-44f5-4bf4-9aa8-7c7ad262b106\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:2:{s:16:\"background_color\";s:7:\"#191919\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"64731693-a92a-40b4-9e40-0874d41d58f6\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:4:{s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#000000 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:2:\"{}\";}}}}s:13:\"et_pb_heading\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Heading Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\";O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"Freelance Subheading\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:9:{s:11:\"title_level\";s:2:\"h4\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"14px\";s:22:\"title_font_size_tablet\";s:4:\"13px\";s:21:\"title_font_size_phone\";s:4:\"12px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:6:\"0.08em\";s:17:\"title_line_height\";s:5:\"1.6em\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Heading 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Heading 2\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:11:\"title_level\";s:2:\"h2\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"7dc66019-4936-4070-a021-04afee121534\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Heading 3\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:11:\"title_level\";s:2:\"h3\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Heading 4\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:11:\"title_level\";s:2:\"h4\";s:15:\"title_font_size\";s:4:\"31px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Heading 5\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:11:\"title_level\";s:2:\"h5\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Heading 6\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:11:\"title_level\";s:2:\"h6\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}}s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";s:7:\"presets\";O:8:\"stdClass\":5:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"Text Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:41:{s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:7:\"#2ea3f2\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";}}s:36:\"30b0cf31-fbc5-465c-beb7-b33ed988449b\";O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#2ea3f2\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}s:36:\"b8fc1358-9f09-46b7-9534-de79de7fbe3b\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:49:{s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:16:\"text_line_height\";s:5:\"1.8em\";s:9:\"link_font\";s:8:\"||||||||\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:7:\"#2ea3f2\";}}s:36:\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\";O:8:\"stdClass\":5:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:132:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#2ea3f2\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}}}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";s:7:\"presets\";O:8:\"stdClass\":11:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Button Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:12:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:18:\"global_colors_info\";s:42:\"{\"gcid-primary-color\":[\"button_bg_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:9:\"off|hover\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Primary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:73:\"{\"gcid-primary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#2ea3f2\";}}s:36:\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Freelance Primary Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:8:{s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"1b25a799-02b0-4096-b12f-dfe461045ebd\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Secondary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:10:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"button_bg_color\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"da11c078-ec2d-4b1f-8568-5d5fbf909983\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Freelance Secondary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:75:\"{\"gcid-secondary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#2ea3f2\";}}s:36:\"aea6612e-fe2b-464e-8d62-d5d38604b99c\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Black\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:11:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"1c051a38-3495-4819-a920-8f590ba49d01\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Black Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:18:\"global_colors_info\";s:78:\"{\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:7:\"#2ea3f2\";}}s:36:\"8f954a0a-398e-40f7-a7c5-bbf546dbeff5\";O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"Freelance Black Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:9:{s:18:\"global_colors_info\";s:51:\"{\"gcid-primary-color\":[\"button_text_color__hover\"]}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:17:\"button_text_color\";s:7:\"#000000\";s:24:\"button_text_color__hover\";s:7:\"#2ea3f2\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"4f331d65-dd4c-4e27-bcc2-6b4badd503d5\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance White\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:12:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:34:\"button_border_color__hover_enabled\";s:9:\"off|hover\";}}s:36:\"3b6f0607-3907-457d-803f-df7639345ab7\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance White Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:21:\"rgba(255,255,255,0.3)\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:146:\"{\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\":[\"button_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:7:\"#2ea3f2\";}}}}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{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.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:20:{s:18:\"global_colors_info\";s:86:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"9255404c-899f-4e8e-8b42-47eaf97b334b\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:116:{s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"title_level\";s:2:\"h1\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:32:\"button_text_color__hover_enabled\";s:11:\"off|desktop\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{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.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:139:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:105:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"bf8f2432-2198-42e1-be3e-2cab1a3faca1\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:140:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:4:\"dark\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";s:7:\"presets\";O:8:\"stdClass\":5:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Blurb Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:22:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"64px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:7:\"#2ea3f2\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"12270984-f7d3-4488-99b8-09529e67403d\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Hover\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:47:{s:16:\"image_icon_width\";s:4:\"40px\";s:17:\"header_text_color\";s:19:\"RGBA(255,255,255,0)\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:14:\"custom_padding\";s:27:\"40%|40px|40%|40px|true|true\";s:21:\"custom_padding_tablet\";s:22:\"|30px||30px|false|true\";s:20:\"custom_padding_phone\";s:22:\"|20px||20px|false|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-primary-color\":[\"icon_color__hover\"]}\";s:10:\"icon_color\";s:19:\"RGBA(255,255,255,0)\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:7:\"#2ea3f2\";s:14:\"icon_alignment\";s:4:\"left\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:16:\"background_blend\";s:8:\"multiply\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:16:\"box_shadow_style\";s:7:\"preset3\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";}}s:36:\"b8ea676a-bda4-461b-8fe0-8f1979a72473\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.25.2\";s:8:\"settings\";a:26:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:2:\"{}\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"image_icon_width\";s:4:\"64px\";}}s:36:\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\";O:8:\"stdClass\":5:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:111:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"20px\";s:17:\"content_max_width\";s:4:\"100%\";s:12:\"header_level\";s:2:\"h4\";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:8:\"on|phone\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.6em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"14px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:10:\"icon_color\";s:22:\"rgba(255,255,255,0.32)\";s:14:\"icon_alignment\";s:4:\"left\";}}}}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"Blog Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Dark Grid\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:114:{s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"show_more\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"17px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"border_color_all\";s:7:\"#000000\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";}}s:36:\"16c411e2-07e5-41c0-bfea-c03f4cf94cb5\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Dark Fullwidth\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:115:{s:9:\"show_more\";s:2:\"on\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:9:\"fullwidth\";s:2:\"on\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:16:\"border_color_all\";s:7:\"#000000\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";}}}}s:17:\"et_pb_post_slider\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"Post Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:147:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:16:\"background_color\";s:7:\"#0000ff\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"use_bg_overlay\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"meta_font_size\";s:4:\"16px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:16:\"meta_line_height\";s:3:\"1em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:13:\"content_width\";s:4:\"auto\";s:17:\"content_max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:4:\"auto\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:8:\"relative\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:133:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:16:\"bg_overlay_color\";s:15:\"rgba(0,0,0,0.6)\";}}}}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:18:\"Accordion Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:23:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#2ea3f2\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\",\"icon_color\"],\"gcid-heading-color\":[\"toggle_text_color\"]}\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:7:\"#666666\";s:16:\"border_color_all\";s:7:\"#000000\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:10:\"icon_color\";s:7:\"#2ea3f2\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";}}}}s:20:\"et_pb_accordion_item\";O:8:\"stdClass\":2:{s:7:\"default\";s:8:\"_initial\";s:7:\"presets\";O:8:\"stdClass\":1:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Freelance Accordion Preset 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:2:{s:14:\"custom_padding\";s:27:\"30px|0px|30px|0px|true|true\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}}s:12:\"et_pb_toggle\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Toggle Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:27:{s:18:\"global_colors_info\";s:56:\"{\"gcid-primary-color\":[\"quote_text_color\",\"icon_color\"]}\";s:15:\"open_icon_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";s:14:\"custom_padding\";s:25:\"30px||30px|0px|true|false\";s:10:\"icon_color\";s:7:\"#2ea3f2\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";}}}}s:13:\"et_pb_divider\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Divider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:1:{s:14:\"divider_weight\";s:3:\"2px\";}}}}s:20:\"et_pb_number_counter\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Number Counter Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:10:{s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:44:\"{\"gcid-heading-color\":[\"number_text_color\"]}\";s:17:\"number_text_color\";s:7:\"#666666\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:8:\"on|phone\";s:23:\"number_font_size_tablet\";s:4:\"32px\";}}s:36:\"3a23276e-b2b0-49e6-9594-6701dcdb3a27\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:11:{s:17:\"number_text_color\";s:7:\"#FFFFFF\";s:16:\"number_font_size\";s:4:\"50px\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";}}}}s:10:\"et_pb_icon\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"Icon Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:1:{s:10:\"icon_width\";s:4:\"64px\";}}s:36:\"7c5d6aa5-e119-4abc-a9af-ca66274d650c\";O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:1:{s:10:\"icon_width\";s:4:\"32px\";}}}}s:25:\"et_pb_social_media_follow\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Social Media Follow Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:2:{s:10:\"icon_color\";s:7:\"#000000\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}s:36:\"c8d5b2aa-c955-470e-ae32-005f9e1e409b\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:2:{s:10:\"icon_color\";s:7:\"#FFFFFF\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}}}s:33:\"et_pb_social_media_follow_network\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Social Network Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance No Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:2:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";}}}}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:25:{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:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"body_text_color\"],\"gcid-heading-color\":[\"header_text_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#666666\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:7:\"#666666\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}}}s:11:\"et_pb_image\";O:8:\"stdClass\":2:{s:7:\"default\";s:8:\"_initial\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Image Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"b01c845f-39f9-4f44-9643-e98852a8859f\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:3:{s:11:\"use_overlay\";s:2:\"on\";s:19:\"hover_overlay_color\";s:15:\"rgba(0,0,0,0.6)\";s:18:\"global_colors_info\";s:69:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"hover_overlay_color\"]}\";}}}}s:18:\"et_pb_video_slider\";O:8:\"stdClass\":2:{s:7:\"default\";s:8:\"_initial\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:21:\"Video Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8e6f008e-8c87-46d7-b368-6873084fc353\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:1:{s:18:\"show_image_overlay\";s:2:\"on\";}}}}s:11:\"et_pb_audio\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Audio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:8:{s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";}}}}s:9:\"et_pb_cta\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Call To Action Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:20:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}}s:21:\"et_pb_countdown_timer\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Countdown Timer Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:14:{s:18:\"global_colors_info\";s:84:\"{\"gcid-heading-color\":[\"numbers_text_color\"],\"gcid-body-color\":[\"label_text_color\"]}\";s:18:\"numbers_text_color\";s:7:\"#666666\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:7:\"#666666\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}}s:20:\"et_pb_circle_counter\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Circle Counter Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:13:{s:18:\"circle_color_alpha\";s:1:\"1\";s:18:\"global_colors_info\";s:105:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"circle_color\"],\"gcid-heading-color\":[\"number_text_color\"]}\";s:12:\"circle_color\";s:16:\"rgba(0,0,0,0.12)\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"number_text_color\";s:7:\"#666666\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}}s:14:\"et_pb_counters\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:21:\"Bar Counters Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:7:{s:18:\"global_colors_info\";s:108:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"]}\";s:16:\"background_color\";s:16:\"rgba(0,0,0,0.12)\";s:23:\"background_enable_color\";s:2:\"on\";s:10:\"title_font\";s:65:\"--et_global_heading_font|--et_global_heading_font_weight||on|||||\";s:16:\"title_text_color\";s:7:\"#666666\";s:15:\"title_font_size\";s:4:\"14px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}}s:11:\"et_pb_login\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Login Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:23:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}}}s:12:\"et_pb_search\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Search Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:11:{s:12:\"button_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:25:\"1em|1em|1em|1em|true|true\";s:12:\"border_radii\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:45:\"{\"gcid-body-color\":[\"form_field_text_color\"]}\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"1px\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";}}}}s:20:\"et_pb_pricing_tables\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Pricing Tables Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:43:{s:31:\"featured_table_background_color\";s:16:\"rgba(0,0,0,0.12)\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"text_orientation\";s:6:\"center\";s:14:\"custom_padding\";s:19:\"30px||||false|false\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:16:\"border_width_all\";s:3:\"0px\";s:18:\"global_colors_info\";s:299:\"{\"gcid-body-color\":[\"bullet_color\",\"body_text_color\",\"currency_frequency_text_color\"],\"gcid-heading-color\":[\"header_text_color\",\"subheader_text_color\",\"price_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"featured_table_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:12:\"bullet_color\";s:7:\"#666666\";s:17:\"header_text_color\";s:7:\"#666666\";s:15:\"body_text_color\";s:7:\"#666666\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:20:\"subheader_text_color\";s:7:\"#666666\";s:29:\"currency_frequency_text_color\";s:7:\"#666666\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#666666\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}}s:10:\"et_pb_menu\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"Menu Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:20:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:7:\"#2ea3f2\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:7:\"#666666\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:7:\"#2ea3f2\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";}}s:36:\"89db62a1-3898-47f0-91e7-3a2339cd00f5\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:95:{s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"menu_style\";s:12:\"left_aligned\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:7:\"#2ea3f2\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:15:\"logo_max_height\";s:4:\"64px\";s:15:\"cart_icon_color\";s:7:\"#FFFFFF\";s:17:\"search_icon_color\";s:7:\"#FFFFFF\";s:15:\"menu_icon_color\";s:7:\"#FFFFFF\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:7:\"#FFFFFF\";s:14:\"menu_font_size\";s:4:\"16px\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:24:\"dropdown_menu_text_color\";s:7:\"#666666\";s:22:\"mobile_menu_text_color\";s:7:\"#666666\";s:18:\"global_colors_info\";s:130:\"{\"gcid-body-color\":[\"dropdown_menu_text_color\",\"mobile_menu_text_color\"],\"gcid-primary-color\":[\"dropdown_menu_active_link_color\"]}\";}}}}s:16:\"et_pb_post_title\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Post Title Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:10:{s:18:\"global_colors_info\";s:2:\"{}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}s:36:\"62a478a3-7ef6-49d6-9539-6701b57634c3\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:76:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:9:\"meta_font\";s:13:\"|700||on|||||\";}}}}s:13:\"et_pb_sidebar\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Sidebar Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:11:\"show_border\";s:3:\"off\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}}s:14:\"et_pb_post_nav\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Post Navigation Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:2:{s:10:\"title_font\";s:13:\"|700||on|||||\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}s:36:\"eb4ff970-88a1-4ee4-b6a0-c1e2a909623b\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:59:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}}}s:14:\"et_pb_comments\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Comments Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:29:{s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:15:\"meta_text_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"6c4b3436-ad9f-4943-8d4f-b230b960eff4\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:29:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:17:\"background_layout\";s:4:\"dark\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}}s:17:\"et_pb_team_member\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Person Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#2ea3f2\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}}s:17:\"et_pb_testimonial\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"Testimonial Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:14:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#2ea3f2\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:154:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\"],\"gcid-heading-color\":[\"author_text_color\"],\"gcid-secondary-color\":[\"quote_icon_color\"]}\";s:17:\"author_text_color\";s:7:\"#666666\";s:16:\"quote_icon_color\";s:7:\"#2ea3f2\";s:20:\"use_background_color\";s:3:\"off\";}}}}s:26:\"et_pb_filterable_portfolio\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:29:\"Filterable Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:17:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:7:\"#2ea3f2\";s:18:\"caption_text_color\";s:7:\"#000000\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}}s:13:\"et_pb_gallery\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Gallery Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:12:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:7:\"#2ea3f2\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}}s:15:\"et_pb_portfolio\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:18:\"Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:13:{s:9:\"fullwidth\";s:3:\"off\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:7:\"#2ea3f2\";s:18:\"caption_text_color\";s:7:\"#000000\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}}s:10:\"et_pb_tabs\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"Tabs Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:15:{s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"active_tab_text_color\",\"body_quote_text_color\"]}\";s:21:\"active_tab_text_color\";s:7:\"#2ea3f2\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#2ea3f2\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}}s:20:\"et_pb_fullwidth_menu\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Fullwidth Menu Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:18:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:7:\"#2ea3f2\";s:15:\"menu_text_color\";s:7:\"#666666\";s:14:\"menu_font_size\";s:4:\"16px\";s:31:\"dropdown_menu_active_link_color\";s:7:\"#2ea3f2\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";}}}}s:26:\"et_pb_fullwidth_post_title\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:29:\"Fullwidth Post Title Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:13:{s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:22:\"60px||60px||true|false\";s:26:\"custom_padding_last_edited\";s:9:\"on|tablet\";s:21:\"custom_padding_tablet\";s:22:\"30px||30px||true|false\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}}}s:22:\"et_pb_fullwidth_header\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Fullwidth Header Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:50:{s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:22:\"12vw||12vw||true|false\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:18:\"global_colors_info\";s:155:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_overlay_color\"],\"gcid-primary-color\":[\"button_one_bg_color__hover\",\"button_two_bg_color__hover\"]}\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:15:\"rgba(0,0,0,0.6)\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:7:\"#2ea3f2\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:7:\"#2ea3f2\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";}}}}s:25:\"et_pb_fullwidth_portfolio\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Fullwidth Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:15:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:7:\"#2ea3f2\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}}s:27:\"et_pb_fullwidth_post_slider\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:30:\"Fullwidth Post Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:21:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"bg_overlay_color\";s:15:\"rgba(0,0,0,0.6)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}}s:22:\"et_pb_fullwidth_slider\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"ae279531-550a-4732-9546-dae9056b368f\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Fullwidth Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ae279531-550a-4732-9546-dae9056b368f\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:22:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"bg_overlay_color\";s:15:\"rgba(0,0,0,0.6)\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}}s:20:\"et_pb_wc_cart_notice\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:30:{s:18:\"global_colors_info\";s:463:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"title_link_text_color\"]}\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:21:\"title_link_text_color\";s:7:\"#2ea3f2\";}}s:36:\"ee785808-4221-48d1-8c31-1f15776922f1\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:140:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"fields_width\";s:7:\"default\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:15:\"title_font_size\";s:4:\"19px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:27:\"0em|0em|2em|0em|false|false\";s:14:\"custom_padding\";s:31:\"15px|15px|15px|15px|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:7:\"#666666\";s:21:\"title_link_text_color\";s:7:\"#2ea3f2\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:337:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"],\"gcid-primary-color\":[\"title_link_text_color\",\"button_bg_color\"]}\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"title_font_size_tablet\";s:4:\"15px\";s:21:\"title_font_size_phone\";s:4:\"14px\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";}}}}s:19:\"et_pb_wc_breadcrumb\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:4:{s:18:\"global_colors_info\";s:83:\"{\"gcid-primary-color\":[\"link_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"link_text_color\";s:7:\"#2ea3f2\";s:15:\"body_text_color\";s:7:\"#666666\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}s:36:\"dbf1d986-41fd-43f8-992a-cd5577e28e10\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:68:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:14:\"link_font_size\";s:4:\"14px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"link_font\";s:10:\"||||on||||\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}}s:14:\"et_pb_wc_title\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:7:{s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:18:\"header_line_height\";s:5:\"1.3em\";s:16:\"header_font_size\";s:4:\"52px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"19857a48-497c-4a71-9e18-cd3d42ca9aa0\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:63:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}}s:15:\"et_pb_wc_rating\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:4:{s:18:\"global_colors_info\";s:87:\"{\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:14:\"body_font_size\";s:4:\"13px\";s:15:\"body_text_color\";s:7:\"#666666\";}}s:36:\"84120d40-5261-407a-8d37-0ded40340981\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:65:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:6:\"inline\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:46:\"{\"gcid-secondary-color\":[\"rating_text_color\"]}\";}}}}s:20:\"et_pb_wc_description\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:17:{s:18:\"global_colors_info\";s:110:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"24px\";s:27:\"body_quote_font_size_tablet\";s:4:\"20px\";s:26:\"body_quote_font_size_phone\";s:4:\"16px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#2ea3f2\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:15:\"quote_font_size\";s:4:\"30px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";}}s:36:\"c8222a6f-3f16-4d95-86f9-cc46f51154cd\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:110:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";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:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"26px\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:3:\"1em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"22px\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:3:\"1em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"18px\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:3:\"1em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"16px\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:3:\"1em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"14px\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:3:\"1em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:18:\"global_colors_info\";s:68:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";}}}}s:14:\"et_pb_wc_price\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:3:{s:18:\"global_colors_info\";s:42:\"{\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"body_text_color\";s:7:\"#666666\";s:16:\"body_line_height\";s:5:\"1.4em\";}}s:36:\"bdcee4d2-4371-4914-81e3-2208e92907a7\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:2:{s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:16:\"body_line_height\";s:5:\"1.4em\";}}}}s:20:\"et_pb_wc_add_to_cart\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:21:{s:18:\"global_colors_info\";s:425:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\",\"fields_background_color\",\"dropdown_menus_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-body-color\":[\"fields_text_color\",\"dropdown_menus_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-heading-color\":[\"field_label_text_color\"]}\";s:23:\"fields_background_color\";s:19:\"rgba(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#666666\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#000000\";s:25:\"dropdown_menus_text_color\";s:7:\"#666666\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"field_label_text_color\";s:7:\"#666666\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"93f79e07-81c5-4820-8711-c53547d99bba\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:120:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:256:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"431f40ed-e0ca-4212-b551-02a113a1b9ab\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:16:\"background_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:506:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"form_field_background_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}}s:13:\"et_pb_wc_meta\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:2:{s:18:\"global_colors_info\";s:66:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all\"]}\";s:16:\"border_color_all\";s:16:\"rgba(0,0,0,0.12)\";}}}}s:15:\"et_pb_wc_images\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:18:\"global_colors_info\";s:130:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"rating_text_color\",\"icon_hover_color\"],\"gcid-secondary-color\":[\"sale_badge_color\"]}\";s:16:\"sale_badge_color\";s:7:\"#2ea3f2\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";}}}}s:16:\"et_pb_wc_gallery\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:13:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:7:\"#2ea3f2\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"caption_text_color\";s:7:\"#000000\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}s:36:\"0d066721-06f7-476b-ae82-e57ce5ec69b3\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:15:{s:9:\"fullwidth\";s:3:\"off\";s:15:\"zoom_icon_color\";s:7:\"#2ea3f2\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}}s:24:\"et_pb_wc_additional_info\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:15:{s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"attribute_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_bottom_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#666666\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:16:\"rgba(0,0,0,0.12)\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"3c333308-c986-4d69-9b7b-4686f240943d\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:19:{s:10:\"show_title\";s:2:\"on\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:30:\"border_color_bottom_table_cell\";s:21:\"rgba(255,255,255,0.6)\";s:18:\"global_colors_info\";s:211:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_bottom_table_cell\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}}s:13:\"et_pb_wc_tabs\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#2ea3f2\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"active_tab_text_color\"]}\";s:21:\"active_tab_text_color\";s:7:\"#2ea3f2\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}}s:25:\"et_pb_wc_related_products\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:18:{s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:7:\"#2ea3f2\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:16:\"sale_badge_color\";s:7:\"#2ea3f2\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"e6382043-c9e0-4441-ba03-e7df51b3001e\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:21:{s:16:\"sale_badge_color\";s:7:\"#2ea3f2\";s:16:\"icon_hover_color\";s:7:\"#2ea3f2\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:215:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";}}}}s:10:\"et_pb_shop\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:14:{s:15:\"show_pagination\";s:2:\"on\";s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:7:\"#2ea3f2\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:16:\"sale_badge_color\";s:7:\"#2ea3f2\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"1512ab9e-8861-43c3-8f8e-5799a3b94980\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:16:{s:15:\"show_pagination\";s:2:\"on\";s:16:\"sale_badge_color\";s:7:\"#2ea3f2\";s:16:\"icon_hover_color\";s:7:\"#2ea3f2\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}}s:20:\"et_pb_wc_cross_sells\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:6:{s:18:\"global_colors_info\";s:43:\"{\"gcid-heading-color\":[\"price_text_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ffbbfb57-7d10-4b8a-8b50-24275510fe29\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:7:{s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}}s:16:\"et_pb_wc_upsells\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:18:{s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:7:\"#2ea3f2\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:16:\"sale_badge_color\";s:7:\"#2ea3f2\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"a095913c-59c5-4d31-8e2b-957477833677\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:21:{s:16:\"sale_badge_color\";s:7:\"#2ea3f2\";s:16:\"icon_hover_color\";s:7:\"#2ea3f2\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}}s:16:\"et_pb_wc_reviews\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"9daec761-3963-4984-81cf-147432a59eba\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9daec761-3963-4984-81cf-147432a59eba\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:30:{s:16:\"rating_font_size\";s:2:\"14\";s:18:\"global_colors_info\";s:424:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"rating_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"meta_text_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"a8191bd4-7afd-4a27-861f-ae38f8ce63ff\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:32:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:16:\"rating_font_size\";s:2:\"14\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:291:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"cb94fb63-b4d6-4a73-9e61-6b83734df148\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:37:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:21:\"rgba(255,255,255,0.6)\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:7:\"#2ea3f2\";s:16:\"rating_font_size\";s:2:\"14\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:518:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"border_color_all_fields\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}}s:22:\"et_pb_wc_cart_products\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:36:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"global_colors_info\";s:555:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-heading-color\":[\"table_header_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-secondary-color\":[\"button_bg_color\",\"disabled_button_bg_color\"]}\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#666666\";s:27:\"border_color_all_table_cell\";s:16:\"rgba(0,0,0,0.12)\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#FFFFFF\";s:24:\"disabled_button_bg_color\";s:7:\"#2ea3f2\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:25:\"table_cell_custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";}}s:36:\"9b7624b3-f8ce-4c6d-bbc3-8ff588f5bd6f\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:37:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:21:\"rgba(255,255,255,0.6)\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:31:\"disabled_button_bg_color__hover\";s:7:\"#2ea3f2\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}s:36:\"1d9b1177-c744-467f-863f-7f711460a015\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:42:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:21:\"rgba(255,255,255,0.6)\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:7:\"#2ea3f2\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}}}s:20:\"et_pb_wc_cart_totals\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:24:{s:18:\"global_colors_info\";s:412:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\",\"placeholder_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#666666\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:16:\"rgba(0,0,0,0.12)\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#000000\";s:17:\"placeholder_color\";s:7:\"#666666\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7b8f0002-0b6c-4d81-a08d-6103808ac99e\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:29:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:21:\"rgba(255,255,255,0.6)\";s:18:\"global_colors_info\";s:230:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"f20c05a4-0487-4f8e-b24f-261076d3acb3\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:34:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:21:\"rgba(255,255,255,0.6)\";s:18:\"global_colors_info\";s:438:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}}s:25:\"et_pb_wc_checkout_billing\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:17:{s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:541:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"fca9a8d3-2c75-4825-9fec-a1fa8960f08a\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:17:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:7:\"#666666\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:388:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"e0b09b91-6bae-4a01-af45-5d450c481744\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:22:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:7:\"#666666\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"global_colors_info\";s:482:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"tooltip_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}}s:26:\"et_pb_wc_checkout_shipping\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:13:{s:18:\"global_colors_info\";s:385:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"4ecbf864-2a10-4b37-af97-bcd9e2531a28\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:14:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"6927a119-5d2a-4600-8713-40c06fe9f530\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:19:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}}s:33:\"et_pb_wc_checkout_additional_info\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:14:{s:18:\"global_colors_info\";s:306:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:7:\"#666666\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"a36b9eed-c2ec-47a5-87d1-ff5381269b61\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:14:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:214:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"031f6833-57f8-49c5-98ac-029ad54f299a\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:19:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:394:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}}s:31:\"et_pb_wc_checkout_order_details\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:11:{s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:18:\"global_colors_info\";s:395:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#666666\";s:27:\"border_color_all_table_cell\";s:16:\"rgba(0,0,0,0.12)\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"8a28b75d-be0b-46f0-b7a3-405f1264bfd9\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:15:{s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:21:\"rgba(255,255,255,0.6)\";s:18:\"global_colors_info\";s:346:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}s:36:\"1a129abb-e55d-4993-ba36-846ee365ed43\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:20:{s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:21:\"rgba(255,255,255,0.6)\";s:18:\"global_colors_info\";s:428:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}}s:30:\"et_pb_wc_checkout_payment_info\";O:8:\"stdClass\":2:{s:7:\"default\";s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";O:8:\"stdClass\":5:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:22:{s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#000000\";s:18:\"tooltip_text_color\";s:7:\"#FFFFFF\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:296:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"]}\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#2ea3f2\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"239f7700-2611-4422-85b4-5ce1c7714740\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:26:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:7:\"#666666\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:7:\"#666666\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:280:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7bae7924-2970-40cc-b095-b2c098d2afc5\";O:8:\"stdClass\":5:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:29:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:7:\"#666666\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:7:\"#666666\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:564:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:7:\"#2ea3f2\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}}s:12:\"et_pb_column\";O:8:\"stdClass\":2:{s:7:\"default\";s:8:\"_initial\";s:7:\"presets\";O:8:\"stdClass\":9:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Column Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9c2821aa-f112-49a0-bd92-423c1bf5b77b\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:16:\"background_color\";s:7:\"#2ea3f2\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"be11a423-1b48-4cdb-ab89-d037068b25f8\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:16:\"background_color\";s:7:\"#2ea3f2\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"b1f5171c-6eeb-4dee-972d-2f4897728bba\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"aa81cf7c-a285-4ec6-85e0-66a5153af803\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"a2103633-9b0a-4636-ab6c-c3beb2d72e5b\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Freelance Black Border\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";}}s:36:\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:16:\"background_color\";s:7:\"#191919\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"b83c5c03-e41d-49f4-9a5a-dadd3193027a\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:16:\"background_color\";s:7:\"#e6e2dd\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"d0cbb859-06b9-439f-8115-bd412d324f57\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:8:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:31:\"#191919 0%|rgba(0,0,0,0.6) 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}}s:9:\"et_pb_row\";O:8:\"stdClass\":2:{s:7:\"default\";s:8:\"_initial\";s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:12:\"Row Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"255f8d16-86e7-4ff7-937c-0c73ee5aa6f0\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:16:\"background_color\";s:7:\"#2ea3f2\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"995dc606-35fc-48dd-8049-0a97e6fdd6d6\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:16:\"background_color\";s:7:\"#2ea3f2\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"37c9b83a-6d05-4791-9b32-24aaf57da69e\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"5eed47bd-1ab1-47bd-9483-0814320c162b\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"0a1f0260-8b3b-4b1e-aaaf-2be5b75bbd07\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:16:\"background_color\";s:7:\"#e6e2dd\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"b7979650-614b-4293-b430-4f509785ab9a\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:6:{s:16:\"background_color\";s:7:\"#191919\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"7b64b6a8-b512-4372-82ac-81803dc45605\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:8:{s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:31:\"#191919 0%|rgba(0,0,0,0.6) 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}}}s:4:\"time\";i:1756839170000;s:5:\"label\";s:20:\"Imported From Layout\";}','off'),
(243,'_et_old_page_on_front','0','auto'),
(244,'_et_old_show_on_front','posts','auto'),
(245,'_transient_home_page_set','1','on'),
(246,'_et_core_portability_temp_files','a:1:{s:14:\"et_core_import\";a:1:{i:20523674357266017;s:67:\"/home/wsweb680/public_html/wp-content/uploads/2025/09/layout-1.json\";}}','off'),
(247,'et_divi_builder_presets_history_item_1','O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":71:{s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Section Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"db011b86-ee50-4be9-a091-b82566a64dcd\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"24dbf531-64ed-4d1b-840e-659c6e3a9b74\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"362ada36-891f-4be2-b115-0ee19aadf10c\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:16:\"background_color\";s:7:\"#000000\";}}s:36:\"301e8613-44f5-4bf4-9aa8-7c7ad262b106\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"64731693-a92a-40b4-9e40-0874d41d58f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#000000 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:2:\"{}\";}}}s:7:\"default\";s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";}s:13:\"et_pb_heading\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Heading Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Subheading\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:11:\"title_level\";s:2:\"h4\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"14px\";s:22:\"title_font_size_tablet\";s:4:\"13px\";s:21:\"title_font_size_phone\";s:4:\"12px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:6:\"0.08em\";s:17:\"title_line_height\";s:5:\"1.6em\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 2\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h2\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"7dc66019-4936-4070-a021-04afee121534\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 3\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h3\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 4\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h4\";s:15:\"title_font_size\";s:4:\"31px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 5\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h5\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 6\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h6\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";}s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";}}s:36:\"30b0cf31-fbc5-465c-beb7-b33ed988449b\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}s:36:\"b8fc1358-9f09-46b7-9534-de79de7fbe3b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:16:\"text_line_height\";s:5:\"1.8em\";s:9:\"link_font\";s:8:\"||||||||\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":132:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}}s:7:\"default\";s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":11:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:42:\"{\"gcid-primary-color\":[\"button_bg_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:9:\"off|hover\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Primary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:73:\"{\"gcid-primary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Primary Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"1b25a799-02b0-4096-b12f-dfe461045ebd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Secondary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"button_bg_color\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"da11c078-ec2d-4b1f-8568-5d5fbf909983\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Secondary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:75:\"{\"gcid-secondary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:20:\"gcid-secondary-color\";}}s:36:\"aea6612e-fe2b-464e-8d62-d5d38604b99c\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Black\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"1c051a38-3495-4819-a920-8f590ba49d01\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Black Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:18:\"global_colors_info\";s:78:\"{\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"8f954a0a-398e-40f7-a7c5-bbf546dbeff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Black Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:18:\"global_colors_info\";s:51:\"{\"gcid-primary-color\":[\"button_text_color__hover\"]}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:17:\"button_text_color\";s:7:\"#000000\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"4f331d65-dd4c-4e27-bcc2-6b4badd503d5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance White\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:9:\"off|hover\";}}s:36:\"3b6f0607-3907-457d-803f-df7639345ab7\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance White Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:146:\"{\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\":[\"button_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}}s:7:\"default\";s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:18:\"global_colors_info\";s:86:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"9255404c-899f-4e8e-8b42-47eaf97b334b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":116:{s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"title_level\";s:2:\"h1\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:32:\"button_text_color__hover_enabled\";s:11:\"off|desktop\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":139:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:105:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"bf8f2432-2198-42e1-be3e-2cab1a3faca1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:4:\"dark\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"64px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"12270984-f7d3-4488-99b8-09529e67403d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Hover\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:16:\"image_icon_width\";s:4:\"40px\";s:17:\"header_text_color\";s:19:\"RGBA(255,255,255,0)\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:14:\"custom_padding\";s:27:\"40%|40px|40%|40px|true|true\";s:21:\"custom_padding_tablet\";s:22:\"|30px||30px|false|true\";s:20:\"custom_padding_phone\";s:22:\"|20px||20px|false|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-primary-color\":[\"icon_color__hover\"]}\";s:10:\"icon_color\";s:19:\"RGBA(255,255,255,0)\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:14:\"icon_alignment\";s:4:\"left\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:16:\"background_blend\";s:8:\"multiply\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:16:\"box_shadow_style\";s:7:\"preset3\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";}}s:36:\"b8ea676a-bda4-461b-8fe0-8f1979a72473\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.25.2\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:2:\"{}\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"image_icon_width\";s:4:\"64px\";}}s:36:\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":111:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"20px\";s:17:\"content_max_width\";s:4:\"100%\";s:12:\"header_level\";s:2:\"h4\";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:8:\"on|phone\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.6em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"14px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:10:\"icon_color\";s:22:\"rgba(255,255,255,0.32)\";s:14:\"icon_alignment\";s:4:\"left\";}}}s:7:\"default\";s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Dark Grid\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":114:{s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"show_more\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"17px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"border_color_all\";s:7:\"#000000\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";}}s:36:\"16c411e2-07e5-41c0-bfea-c03f4cf94cb5\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Dark Fullwidth\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":115:{s:9:\"show_more\";s:2:\"on\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:9:\"fullwidth\";s:2:\"on\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:16:\"border_color_all\";s:7:\"#000000\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";}}}s:7:\"default\";s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";}s:17:\"et_pb_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Post Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":147:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:16:\"background_color\";s:7:\"#0000ff\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"use_bg_overlay\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"meta_font_size\";s:4:\"16px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:16:\"meta_line_height\";s:3:\"1em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:13:\"content_width\";s:4:\"auto\";s:17:\"content_max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:4:\"auto\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:8:\"relative\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:133:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";}}}s:7:\"default\";s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\",\"icon_color\"],\"gcid-heading-color\":[\"toggle_text_color\"]}\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:16:\"border_color_all\";s:7:\"#000000\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";}}}s:7:\"default\";s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";}s:20:\"et_pb_accordion_item\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":1:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Accordion Preset 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:14:\"custom_padding\";s:27:\"30px|0px|30px|0px|true|true\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_toggle\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Toggle Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:18:\"global_colors_info\";s:56:\"{\"gcid-primary-color\":[\"quote_text_color\",\"icon_color\"]}\";s:15:\"open_icon_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";s:14:\"custom_padding\";s:25:\"30px||30px|0px|true|false\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";}}}s:7:\"default\";s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";}s:13:\"et_pb_divider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Divider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:14:\"divider_weight\";s:3:\"2px\";}}}s:7:\"default\";s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";}s:20:\"et_pb_number_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Number Counter Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:44:\"{\"gcid-heading-color\":[\"number_text_color\"]}\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:8:\"on|phone\";s:23:\"number_font_size_tablet\";s:4:\"32px\";}}s:36:\"3a23276e-b2b0-49e6-9594-6701dcdb3a27\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:17:\"number_text_color\";s:7:\"#FFFFFF\";s:16:\"number_font_size\";s:4:\"50px\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";}}}s:7:\"default\";s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";}s:10:\"et_pb_icon\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Icon Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"64px\";}}s:36:\"7c5d6aa5-e119-4abc-a9af-ca66274d650c\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"32px\";}}}s:7:\"default\";s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";}s:25:\"et_pb_social_media_follow\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Social Media Follow Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#000000\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}s:36:\"c8d5b2aa-c955-470e-ae32-005f9e1e409b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#FFFFFF\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}}s:7:\"default\";s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";}s:33:\"et_pb_social_media_follow_network\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Social Network Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Freelance No Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":25:{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:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"body_text_color\"],\"gcid-heading-color\":[\"header_text_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";}s:11:\"et_pb_image\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Image Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"b01c845f-39f9-4f44-9643-e98852a8859f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"use_overlay\";s:2:\"on\";s:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"global_colors_info\";s:69:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"hover_overlay_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_video_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Video Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8e6f008e-8c87-46d7-b368-6873084fc353\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:18:\"show_image_overlay\";s:2:\"on\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_audio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Audio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";}s:9:\"et_pb_cta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Call To Action Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";}s:21:\"et_pb_countdown_timer\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Countdown Timer Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:84:\"{\"gcid-heading-color\":[\"numbers_text_color\"],\"gcid-body-color\":[\"label_text_color\"]}\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";}s:20:\"et_pb_circle_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Circle Counter Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"circle_color_alpha\";s:1:\"1\";s:18:\"global_colors_info\";s:105:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"circle_color\"],\"gcid-heading-color\":[\"number_text_color\"]}\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";}s:14:\"et_pb_counters\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Bar Counters Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:108:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"]}\";s:16:\"background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"background_enable_color\";s:2:\"on\";s:10:\"title_font\";s:65:\"--et_global_heading_font|--et_global_heading_font_weight||on|||||\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:15:\"title_font_size\";s:4:\"14px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";}s:11:\"et_pb_login\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Login Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";}s:12:\"et_pb_search\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Search Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"button_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:25:\"1em|1em|1em|1em|true|true\";s:12:\"border_radii\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:45:\"{\"gcid-body-color\":[\"form_field_text_color\"]}\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"1px\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";}s:20:\"et_pb_pricing_tables\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Pricing Tables Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"text_orientation\";s:6:\"center\";s:14:\"custom_padding\";s:19:\"30px||||false|false\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:16:\"border_width_all\";s:3:\"0px\";s:18:\"global_colors_info\";s:299:\"{\"gcid-body-color\":[\"bullet_color\",\"body_text_color\",\"currency_frequency_text_color\"],\"gcid-heading-color\":[\"header_text_color\",\"subheader_text_color\",\"price_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"featured_table_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:18:\"gcid-heading-color\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";}s:10:\"et_pb_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Menu Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";}}s:36:\"89db62a1-3898-47f0-91e7-3a2339cd00f5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":95:{s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"menu_style\";s:12:\"left_aligned\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:15:\"logo_max_height\";s:4:\"64px\";s:15:\"cart_icon_color\";s:7:\"#FFFFFF\";s:17:\"search_icon_color\";s:7:\"#FFFFFF\";s:15:\"menu_icon_color\";s:7:\"#FFFFFF\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:7:\"#FFFFFF\";s:14:\"menu_font_size\";s:4:\"16px\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:18:\"global_colors_info\";s:130:\"{\"gcid-body-color\":[\"dropdown_menu_text_color\",\"mobile_menu_text_color\"],\"gcid-primary-color\":[\"dropdown_menu_active_link_color\"]}\";}}}s:7:\"default\";s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";}s:16:\"et_pb_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Post Title Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:18:\"global_colors_info\";s:2:\"{}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}s:36:\"62a478a3-7ef6-49d6-9539-6701b57634c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":76:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:9:\"meta_font\";s:13:\"|700||on|||||\";}}}s:7:\"default\";s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";}s:13:\"et_pb_sidebar\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Sidebar Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"show_border\";s:3:\"off\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";}s:14:\"et_pb_post_nav\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Post Navigation Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"title_font\";s:13:\"|700||on|||||\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}s:36:\"eb4ff970-88a1-4ee4-b6a0-c1e2a909623b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":59:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";}s:14:\"et_pb_comments\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Comments Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:15:\"meta_text_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"6c4b3436-ad9f-4943-8d4f-b230b960eff4\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:17:\"background_layout\";s:4:\"dark\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";}s:17:\"et_pb_team_member\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Person Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";}s:17:\"et_pb_testimonial\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Testimonial Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:154:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\"],\"gcid-heading-color\":[\"author_text_color\"],\"gcid-secondary-color\":[\"quote_icon_color\"]}\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:20:\"use_background_color\";s:3:\"off\";}}}s:7:\"default\";s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";}s:26:\"et_pb_filterable_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Filterable Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";}s:13:\"et_pb_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Gallery Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";}s:15:\"et_pb_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";}s:10:\"et_pb_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Tabs Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"active_tab_text_color\",\"body_quote_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";}s:20:\"et_pb_fullwidth_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Fullwidth Menu Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";}}}s:7:\"default\";s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";}s:26:\"et_pb_fullwidth_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Fullwidth Post Title Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:22:\"60px||60px||true|false\";s:26:\"custom_padding_last_edited\";s:9:\"on|tablet\";s:21:\"custom_padding_tablet\";s:22:\"30px||30px||true|false\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";}s:22:\"et_pb_fullwidth_header\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Fullwidth Header Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":50:{s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:22:\"12vw||12vw||true|false\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:18:\"global_colors_info\";s:155:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_overlay_color\"],\"gcid-primary-color\":[\"button_one_bg_color__hover\",\"button_two_bg_color__hover\"]}\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";}s:25:\"et_pb_fullwidth_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Fullwidth Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";}s:27:\"et_pb_fullwidth_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"Fullwidth Post Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";}s:22:\"et_pb_fullwidth_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Fullwidth Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ae279531-550a-4732-9546-dae9056b368f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"ae279531-550a-4732-9546-dae9056b368f\";}s:20:\"et_pb_wc_cart_notice\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:18:\"global_colors_info\";s:463:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"title_link_text_color\"]}\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"ee785808-4221-48d1-8c31-1f15776922f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"fields_width\";s:7:\"default\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:15:\"title_font_size\";s:4:\"19px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:27:\"0em|0em|2em|0em|false|false\";s:14:\"custom_padding\";s:31:\"15px|15px|15px|15px|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:337:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"],\"gcid-primary-color\":[\"title_link_text_color\",\"button_bg_color\"]}\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"title_font_size_tablet\";s:4:\"15px\";s:21:\"title_font_size_phone\";s:4:\"14px\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";}}}s:7:\"default\";s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";}s:19:\"et_pb_wc_breadcrumb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:83:\"{\"gcid-primary-color\":[\"link_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"link_text_color\";s:18:\"gcid-primary-color\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}s:36:\"dbf1d986-41fd-43f8-992a-cd5577e28e10\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:14:\"link_font_size\";s:4:\"14px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"link_font\";s:10:\"||||on||||\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";}s:14:\"et_pb_wc_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:18:\"header_line_height\";s:5:\"1.3em\";s:16:\"header_font_size\";s:4:\"52px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"19857a48-497c-4a71-9e18-cd3d42ca9aa0\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":63:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";}s:15:\"et_pb_wc_rating\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:87:\"{\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:14:\"body_font_size\";s:4:\"13px\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";}}s:36:\"84120d40-5261-407a-8d37-0ded40340981\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:6:\"inline\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:46:\"{\"gcid-secondary-color\":[\"rating_text_color\"]}\";}}}s:7:\"default\";s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";}s:20:\"et_pb_wc_description\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:18:\"global_colors_info\";s:110:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"24px\";s:27:\"body_quote_font_size_tablet\";s:4:\"20px\";s:26:\"body_quote_font_size_phone\";s:4:\"16px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:15:\"quote_font_size\";s:4:\"30px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";}}s:36:\"c8222a6f-3f16-4d95-86f9-cc46f51154cd\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":110:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";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:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"26px\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:3:\"1em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"22px\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:3:\"1em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"18px\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:3:\"1em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"16px\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:3:\"1em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"14px\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:3:\"1em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:18:\"global_colors_info\";s:68:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";}}}s:7:\"default\";s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";}s:14:\"et_pb_wc_price\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:18:\"global_colors_info\";s:42:\"{\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:16:\"body_line_height\";s:5:\"1.4em\";}}s:36:\"bdcee4d2-4371-4914-81e3-2208e92907a7\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:16:\"body_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";}s:20:\"et_pb_wc_add_to_cart\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:18:\"global_colors_info\";s:425:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\",\"fields_background_color\",\"dropdown_menus_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-body-color\":[\"fields_text_color\",\"dropdown_menus_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-heading-color\":[\"field_label_text_color\"]}\";s:23:\"fields_background_color\";s:19:\"rgba(255,255,255,0)\";s:17:\"fields_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#000000\";s:25:\"dropdown_menus_text_color\";s:15:\"gcid-body-color\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"field_label_text_color\";s:18:\"gcid-heading-color\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"93f79e07-81c5-4820-8711-c53547d99bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":120:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:256:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"431f40ed-e0ca-4212-b551-02a113a1b9ab\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:16:\"background_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:506:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"form_field_background_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";}s:13:\"et_pb_wc_meta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:66:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all\"]}\";s:16:\"border_color_all\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";}}}s:7:\"default\";s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";}s:15:\"et_pb_wc_images\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:130:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"rating_text_color\",\"icon_hover_color\"],\"gcid-secondary-color\":[\"sale_badge_color\"]}\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";}s:16:\"et_pb_wc_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"caption_text_color\";s:7:\"#000000\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}s:36:\"0d066721-06f7-476b-ae82-e57ce5ec69b3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:9:\"fullwidth\";s:3:\"off\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";}s:24:\"et_pb_wc_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"attribute_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_bottom_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"3c333308-c986-4d69-9b7b-4686f240943d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:10:\"show_title\";s:2:\"on\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:211:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_bottom_table_cell\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";}s:13:\"et_pb_wc_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"active_tab_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";}s:25:\"et_pb_wc_related_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"e6382043-c9e0-4441-ba03-e7df51b3001e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:215:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";}s:10:\"et_pb_shop\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:15:\"show_pagination\";s:2:\"on\";s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"1512ab9e-8861-43c3-8f8e-5799a3b94980\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":16:{s:15:\"show_pagination\";s:2:\"on\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";}s:20:\"et_pb_wc_cross_sells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:43:\"{\"gcid-heading-color\":[\"price_text_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ffbbfb57-7d10-4b8a-8b50-24275510fe29\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";}s:16:\"et_pb_wc_upsells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"a095913c-59c5-4d31-8e2b-957477833677\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";}s:16:\"et_pb_wc_reviews\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9daec761-3963-4984-81cf-147432a59eba\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:16:\"rating_font_size\";s:2:\"14\";s:18:\"global_colors_info\";s:424:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"rating_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"meta_text_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"a8191bd4-7afd-4a27-861f-ae38f8ce63ff\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:291:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"cb94fb63-b4d6-4a73-9e61-6b83734df148\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:518:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"border_color_all_fields\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"9daec761-3963-4984-81cf-147432a59eba\";}s:22:\"et_pb_wc_cart_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"global_colors_info\";s:555:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-heading-color\":[\"table_header_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-secondary-color\":[\"button_bg_color\",\"disabled_button_bg_color\"]}\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#FFFFFF\";s:24:\"disabled_button_bg_color\";s:20:\"gcid-secondary-color\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:25:\"table_cell_custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";}}s:36:\"9b7624b3-f8ce-4c6d-bbc3-8ff588f5bd6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}s:36:\"1d9b1177-c744-467f-863f-7f711460a015\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";}s:20:\"et_pb_wc_cart_totals\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":24:{s:18:\"global_colors_info\";s:412:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\",\"placeholder_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#000000\";s:17:\"placeholder_color\";s:15:\"gcid-body-color\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7b8f0002-0b6c-4d81-a08d-6103808ac99e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:230:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"f20c05a4-0487-4f8e-b24f-261076d3acb3\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:438:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";}s:25:\"et_pb_wc_checkout_billing\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:541:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"fca9a8d3-2c75-4825-9fec-a1fa8960f08a\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:388:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"e0b09b91-6bae-4a01-af45-5d450c481744\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"global_colors_info\";s:482:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"tooltip_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";}s:26:\"et_pb_wc_checkout_shipping\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:385:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"4ecbf864-2a10-4b37-af97-bcd9e2531a28\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"6927a119-5d2a-4600-8713-40c06fe9f530\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";}s:33:\"et_pb_wc_checkout_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:306:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"a36b9eed-c2ec-47a5-87d1-ff5381269b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:214:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"031f6833-57f8-49c5-98ac-029ad54f299a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:394:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";}s:31:\"et_pb_wc_checkout_order_details\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:18:\"global_colors_info\";s:395:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"8a28b75d-be0b-46f0-b7a3-405f1264bfd9\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:346:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}s:36:\"1a129abb-e55d-4993-ba36-846ee365ed43\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:428:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";}s:30:\"et_pb_wc_checkout_payment_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#000000\";s:18:\"tooltip_text_color\";s:7:\"#FFFFFF\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:296:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"]}\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"239f7700-2611-4422-85b4-5ce1c7714740\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:280:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7bae7924-2970-40cc-b095-b2c098d2afc5\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:564:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";}s:12:\"et_pb_column\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":9:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Column Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9c2821aa-f112-49a0-bd92-423c1bf5b77b\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"be11a423-1b48-4cdb-ab89-d037068b25f8\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"b1f5171c-6eeb-4dee-972d-2f4897728bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"aa81cf7c-a285-4ec6-85e0-66a5153af803\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"a2103633-9b0a-4636-ab6c-c3beb2d72e5b\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Black Border\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";}}s:36:\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"b83c5c03-e41d-49f4-9a5a-dadd3193027a\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"d0cbb859-06b9-439f-8115-bd412d324f57\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:9:\"et_pb_row\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:12:\"Row Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"255f8d16-86e7-4ff7-937c-0c73ee5aa6f0\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"995dc606-35fc-48dd-8049-0a97e6fdd6d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"37c9b83a-6d05-4791-9b32-24aaf57da69e\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"5eed47bd-1ab1-47bd-9483-0814320c162b\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"0a1f0260-8b3b-4b1e-aaaf-2be5b75bbd07\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"b7979650-614b-4293-b430-4f509785ab9a\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"7b64b6a8-b512-4372-82ac-81803dc45605\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}}s:4:\"time\";i:1756839182000;s:5:\"label\";s:20:\"Imported From Layout\";}','off');
INSERT INTO `ePgN5dhl_options` VALUES
(248,'et_divi_builder_presets_history_item_2','O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":71:{s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Section Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"db011b86-ee50-4be9-a091-b82566a64dcd\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"24dbf531-64ed-4d1b-840e-659c6e3a9b74\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"362ada36-891f-4be2-b115-0ee19aadf10c\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:16:\"background_color\";s:7:\"#000000\";}}s:36:\"301e8613-44f5-4bf4-9aa8-7c7ad262b106\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"64731693-a92a-40b4-9e40-0874d41d58f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#000000 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:2:\"{}\";}}}s:7:\"default\";s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";}s:13:\"et_pb_heading\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Heading Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Subheading\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:11:\"title_level\";s:2:\"h4\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"14px\";s:22:\"title_font_size_tablet\";s:4:\"13px\";s:21:\"title_font_size_phone\";s:4:\"12px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:6:\"0.08em\";s:17:\"title_line_height\";s:5:\"1.6em\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 2\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h2\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"7dc66019-4936-4070-a021-04afee121534\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 3\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h3\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 4\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h4\";s:15:\"title_font_size\";s:4:\"31px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 5\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h5\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 6\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h6\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";}s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";}}s:36:\"30b0cf31-fbc5-465c-beb7-b33ed988449b\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}s:36:\"b8fc1358-9f09-46b7-9534-de79de7fbe3b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:16:\"text_line_height\";s:5:\"1.8em\";s:9:\"link_font\";s:8:\"||||||||\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":132:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}}s:7:\"default\";s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":11:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:42:\"{\"gcid-primary-color\":[\"button_bg_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:9:\"off|hover\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Primary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:73:\"{\"gcid-primary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Primary Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"1b25a799-02b0-4096-b12f-dfe461045ebd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Secondary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"button_bg_color\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"da11c078-ec2d-4b1f-8568-5d5fbf909983\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Secondary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:75:\"{\"gcid-secondary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:20:\"gcid-secondary-color\";}}s:36:\"aea6612e-fe2b-464e-8d62-d5d38604b99c\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Black\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"1c051a38-3495-4819-a920-8f590ba49d01\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Black Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:18:\"global_colors_info\";s:78:\"{\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"8f954a0a-398e-40f7-a7c5-bbf546dbeff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Black Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:18:\"global_colors_info\";s:51:\"{\"gcid-primary-color\":[\"button_text_color__hover\"]}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:17:\"button_text_color\";s:7:\"#000000\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"4f331d65-dd4c-4e27-bcc2-6b4badd503d5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance White\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:9:\"off|hover\";}}s:36:\"3b6f0607-3907-457d-803f-df7639345ab7\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance White Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:146:\"{\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\":[\"button_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}}s:7:\"default\";s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:18:\"global_colors_info\";s:86:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"9255404c-899f-4e8e-8b42-47eaf97b334b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":116:{s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"title_level\";s:2:\"h1\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:32:\"button_text_color__hover_enabled\";s:11:\"off|desktop\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":139:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:105:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"bf8f2432-2198-42e1-be3e-2cab1a3faca1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:4:\"dark\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"64px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"12270984-f7d3-4488-99b8-09529e67403d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Hover\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:16:\"image_icon_width\";s:4:\"40px\";s:17:\"header_text_color\";s:19:\"RGBA(255,255,255,0)\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:14:\"custom_padding\";s:27:\"40%|40px|40%|40px|true|true\";s:21:\"custom_padding_tablet\";s:22:\"|30px||30px|false|true\";s:20:\"custom_padding_phone\";s:22:\"|20px||20px|false|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-primary-color\":[\"icon_color__hover\"]}\";s:10:\"icon_color\";s:19:\"RGBA(255,255,255,0)\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:14:\"icon_alignment\";s:4:\"left\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:16:\"background_blend\";s:8:\"multiply\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:16:\"box_shadow_style\";s:7:\"preset3\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";}}s:36:\"b8ea676a-bda4-461b-8fe0-8f1979a72473\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.25.2\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:2:\"{}\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"image_icon_width\";s:4:\"64px\";}}s:36:\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":111:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"20px\";s:17:\"content_max_width\";s:4:\"100%\";s:12:\"header_level\";s:2:\"h4\";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:8:\"on|phone\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.6em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"14px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:10:\"icon_color\";s:22:\"rgba(255,255,255,0.32)\";s:14:\"icon_alignment\";s:4:\"left\";}}}s:7:\"default\";s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Dark Grid\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":114:{s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"show_more\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"17px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"border_color_all\";s:7:\"#000000\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";}}s:36:\"16c411e2-07e5-41c0-bfea-c03f4cf94cb5\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Dark Fullwidth\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":115:{s:9:\"show_more\";s:2:\"on\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:9:\"fullwidth\";s:2:\"on\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:16:\"border_color_all\";s:7:\"#000000\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";}}}s:7:\"default\";s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";}s:17:\"et_pb_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Post Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":147:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:16:\"background_color\";s:7:\"#0000ff\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"use_bg_overlay\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"meta_font_size\";s:4:\"16px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:16:\"meta_line_height\";s:3:\"1em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:13:\"content_width\";s:4:\"auto\";s:17:\"content_max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:4:\"auto\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:8:\"relative\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:133:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";}}}s:7:\"default\";s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\",\"icon_color\"],\"gcid-heading-color\":[\"toggle_text_color\"]}\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:16:\"border_color_all\";s:7:\"#000000\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";}}}s:7:\"default\";s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";}s:20:\"et_pb_accordion_item\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":1:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Accordion Preset 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:14:\"custom_padding\";s:27:\"30px|0px|30px|0px|true|true\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_toggle\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Toggle Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:18:\"global_colors_info\";s:56:\"{\"gcid-primary-color\":[\"quote_text_color\",\"icon_color\"]}\";s:15:\"open_icon_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";s:14:\"custom_padding\";s:25:\"30px||30px|0px|true|false\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";}}}s:7:\"default\";s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";}s:13:\"et_pb_divider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Divider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:14:\"divider_weight\";s:3:\"2px\";}}}s:7:\"default\";s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";}s:20:\"et_pb_number_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Number Counter Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:44:\"{\"gcid-heading-color\":[\"number_text_color\"]}\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:8:\"on|phone\";s:23:\"number_font_size_tablet\";s:4:\"32px\";}}s:36:\"3a23276e-b2b0-49e6-9594-6701dcdb3a27\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:17:\"number_text_color\";s:7:\"#FFFFFF\";s:16:\"number_font_size\";s:4:\"50px\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";}}}s:7:\"default\";s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";}s:10:\"et_pb_icon\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Icon Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"64px\";}}s:36:\"7c5d6aa5-e119-4abc-a9af-ca66274d650c\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"32px\";}}}s:7:\"default\";s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";}s:25:\"et_pb_social_media_follow\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Social Media Follow Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#000000\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}s:36:\"c8d5b2aa-c955-470e-ae32-005f9e1e409b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#FFFFFF\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}}s:7:\"default\";s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";}s:33:\"et_pb_social_media_follow_network\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Social Network Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Freelance No Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":25:{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:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"body_text_color\"],\"gcid-heading-color\":[\"header_text_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";}s:11:\"et_pb_image\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Image Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"b01c845f-39f9-4f44-9643-e98852a8859f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"use_overlay\";s:2:\"on\";s:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"global_colors_info\";s:69:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"hover_overlay_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_video_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Video Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8e6f008e-8c87-46d7-b368-6873084fc353\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:18:\"show_image_overlay\";s:2:\"on\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_audio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Audio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";}s:9:\"et_pb_cta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Call To Action Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";}s:21:\"et_pb_countdown_timer\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Countdown Timer Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:84:\"{\"gcid-heading-color\":[\"numbers_text_color\"],\"gcid-body-color\":[\"label_text_color\"]}\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";}s:20:\"et_pb_circle_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Circle Counter Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"circle_color_alpha\";s:1:\"1\";s:18:\"global_colors_info\";s:105:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"circle_color\"],\"gcid-heading-color\":[\"number_text_color\"]}\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";}s:14:\"et_pb_counters\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Bar Counters Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:108:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"]}\";s:16:\"background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"background_enable_color\";s:2:\"on\";s:10:\"title_font\";s:65:\"--et_global_heading_font|--et_global_heading_font_weight||on|||||\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:15:\"title_font_size\";s:4:\"14px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";}s:11:\"et_pb_login\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Login Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";}s:12:\"et_pb_search\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Search Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"button_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:25:\"1em|1em|1em|1em|true|true\";s:12:\"border_radii\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:45:\"{\"gcid-body-color\":[\"form_field_text_color\"]}\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"1px\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";}s:20:\"et_pb_pricing_tables\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Pricing Tables Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"text_orientation\";s:6:\"center\";s:14:\"custom_padding\";s:19:\"30px||||false|false\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:16:\"border_width_all\";s:3:\"0px\";s:18:\"global_colors_info\";s:299:\"{\"gcid-body-color\":[\"bullet_color\",\"body_text_color\",\"currency_frequency_text_color\"],\"gcid-heading-color\":[\"header_text_color\",\"subheader_text_color\",\"price_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"featured_table_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:18:\"gcid-heading-color\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";}s:10:\"et_pb_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Menu Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";}}s:36:\"89db62a1-3898-47f0-91e7-3a2339cd00f5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":95:{s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"menu_style\";s:12:\"left_aligned\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:15:\"logo_max_height\";s:4:\"64px\";s:15:\"cart_icon_color\";s:7:\"#FFFFFF\";s:17:\"search_icon_color\";s:7:\"#FFFFFF\";s:15:\"menu_icon_color\";s:7:\"#FFFFFF\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:7:\"#FFFFFF\";s:14:\"menu_font_size\";s:4:\"16px\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:18:\"global_colors_info\";s:130:\"{\"gcid-body-color\":[\"dropdown_menu_text_color\",\"mobile_menu_text_color\"],\"gcid-primary-color\":[\"dropdown_menu_active_link_color\"]}\";}}}s:7:\"default\";s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";}s:16:\"et_pb_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Post Title Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:18:\"global_colors_info\";s:2:\"{}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}s:36:\"62a478a3-7ef6-49d6-9539-6701b57634c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":76:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:9:\"meta_font\";s:13:\"|700||on|||||\";}}}s:7:\"default\";s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";}s:13:\"et_pb_sidebar\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Sidebar Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"show_border\";s:3:\"off\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";}s:14:\"et_pb_post_nav\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Post Navigation Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"title_font\";s:13:\"|700||on|||||\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}s:36:\"eb4ff970-88a1-4ee4-b6a0-c1e2a909623b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":59:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";}s:14:\"et_pb_comments\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Comments Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:15:\"meta_text_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"6c4b3436-ad9f-4943-8d4f-b230b960eff4\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:17:\"background_layout\";s:4:\"dark\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";}s:17:\"et_pb_team_member\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Person Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";}s:17:\"et_pb_testimonial\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Testimonial Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:154:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\"],\"gcid-heading-color\":[\"author_text_color\"],\"gcid-secondary-color\":[\"quote_icon_color\"]}\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:20:\"use_background_color\";s:3:\"off\";}}}s:7:\"default\";s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";}s:26:\"et_pb_filterable_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Filterable Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";}s:13:\"et_pb_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Gallery Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";}s:15:\"et_pb_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";}s:10:\"et_pb_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Tabs Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"active_tab_text_color\",\"body_quote_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";}s:20:\"et_pb_fullwidth_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Fullwidth Menu Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";}}}s:7:\"default\";s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";}s:26:\"et_pb_fullwidth_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Fullwidth Post Title Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:22:\"60px||60px||true|false\";s:26:\"custom_padding_last_edited\";s:9:\"on|tablet\";s:21:\"custom_padding_tablet\";s:22:\"30px||30px||true|false\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";}s:22:\"et_pb_fullwidth_header\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Fullwidth Header Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":50:{s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:22:\"12vw||12vw||true|false\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:18:\"global_colors_info\";s:155:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_overlay_color\"],\"gcid-primary-color\":[\"button_one_bg_color__hover\",\"button_two_bg_color__hover\"]}\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";}s:25:\"et_pb_fullwidth_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Fullwidth Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";}s:27:\"et_pb_fullwidth_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"Fullwidth Post Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";}s:22:\"et_pb_fullwidth_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Fullwidth Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ae279531-550a-4732-9546-dae9056b368f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"ae279531-550a-4732-9546-dae9056b368f\";}s:20:\"et_pb_wc_cart_notice\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:18:\"global_colors_info\";s:463:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"title_link_text_color\"]}\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"ee785808-4221-48d1-8c31-1f15776922f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"fields_width\";s:7:\"default\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:15:\"title_font_size\";s:4:\"19px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:27:\"0em|0em|2em|0em|false|false\";s:14:\"custom_padding\";s:31:\"15px|15px|15px|15px|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:337:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"],\"gcid-primary-color\":[\"title_link_text_color\",\"button_bg_color\"]}\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"title_font_size_tablet\";s:4:\"15px\";s:21:\"title_font_size_phone\";s:4:\"14px\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";}}}s:7:\"default\";s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";}s:19:\"et_pb_wc_breadcrumb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:83:\"{\"gcid-primary-color\":[\"link_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"link_text_color\";s:18:\"gcid-primary-color\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}s:36:\"dbf1d986-41fd-43f8-992a-cd5577e28e10\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:14:\"link_font_size\";s:4:\"14px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"link_font\";s:10:\"||||on||||\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";}s:14:\"et_pb_wc_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:18:\"header_line_height\";s:5:\"1.3em\";s:16:\"header_font_size\";s:4:\"52px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"19857a48-497c-4a71-9e18-cd3d42ca9aa0\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":63:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";}s:15:\"et_pb_wc_rating\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:87:\"{\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:14:\"body_font_size\";s:4:\"13px\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";}}s:36:\"84120d40-5261-407a-8d37-0ded40340981\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:6:\"inline\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:46:\"{\"gcid-secondary-color\":[\"rating_text_color\"]}\";}}}s:7:\"default\";s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";}s:20:\"et_pb_wc_description\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:18:\"global_colors_info\";s:110:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"24px\";s:27:\"body_quote_font_size_tablet\";s:4:\"20px\";s:26:\"body_quote_font_size_phone\";s:4:\"16px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:15:\"quote_font_size\";s:4:\"30px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";}}s:36:\"c8222a6f-3f16-4d95-86f9-cc46f51154cd\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":110:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";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:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"26px\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:3:\"1em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"22px\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:3:\"1em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"18px\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:3:\"1em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"16px\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:3:\"1em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"14px\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:3:\"1em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:18:\"global_colors_info\";s:68:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";}}}s:7:\"default\";s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";}s:14:\"et_pb_wc_price\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:18:\"global_colors_info\";s:42:\"{\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:16:\"body_line_height\";s:5:\"1.4em\";}}s:36:\"bdcee4d2-4371-4914-81e3-2208e92907a7\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:16:\"body_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";}s:20:\"et_pb_wc_add_to_cart\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:18:\"global_colors_info\";s:425:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\",\"fields_background_color\",\"dropdown_menus_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-body-color\":[\"fields_text_color\",\"dropdown_menus_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-heading-color\":[\"field_label_text_color\"]}\";s:23:\"fields_background_color\";s:19:\"rgba(255,255,255,0)\";s:17:\"fields_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#000000\";s:25:\"dropdown_menus_text_color\";s:15:\"gcid-body-color\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"field_label_text_color\";s:18:\"gcid-heading-color\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"93f79e07-81c5-4820-8711-c53547d99bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":120:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:256:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"431f40ed-e0ca-4212-b551-02a113a1b9ab\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:16:\"background_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:506:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"form_field_background_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";}s:13:\"et_pb_wc_meta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:66:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all\"]}\";s:16:\"border_color_all\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";}}}s:7:\"default\";s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";}s:15:\"et_pb_wc_images\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:130:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"rating_text_color\",\"icon_hover_color\"],\"gcid-secondary-color\":[\"sale_badge_color\"]}\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";}s:16:\"et_pb_wc_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"caption_text_color\";s:7:\"#000000\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}s:36:\"0d066721-06f7-476b-ae82-e57ce5ec69b3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:9:\"fullwidth\";s:3:\"off\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";}s:24:\"et_pb_wc_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"attribute_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_bottom_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"3c333308-c986-4d69-9b7b-4686f240943d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:10:\"show_title\";s:2:\"on\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:211:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_bottom_table_cell\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";}s:13:\"et_pb_wc_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"active_tab_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";}s:25:\"et_pb_wc_related_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"e6382043-c9e0-4441-ba03-e7df51b3001e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:215:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";}s:10:\"et_pb_shop\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:15:\"show_pagination\";s:2:\"on\";s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"1512ab9e-8861-43c3-8f8e-5799a3b94980\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":16:{s:15:\"show_pagination\";s:2:\"on\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";}s:20:\"et_pb_wc_cross_sells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:43:\"{\"gcid-heading-color\":[\"price_text_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ffbbfb57-7d10-4b8a-8b50-24275510fe29\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";}s:16:\"et_pb_wc_upsells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"a095913c-59c5-4d31-8e2b-957477833677\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";}s:16:\"et_pb_wc_reviews\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9daec761-3963-4984-81cf-147432a59eba\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:16:\"rating_font_size\";s:2:\"14\";s:18:\"global_colors_info\";s:424:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"rating_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"meta_text_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"a8191bd4-7afd-4a27-861f-ae38f8ce63ff\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:291:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"cb94fb63-b4d6-4a73-9e61-6b83734df148\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:518:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"border_color_all_fields\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"9daec761-3963-4984-81cf-147432a59eba\";}s:22:\"et_pb_wc_cart_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"global_colors_info\";s:555:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-heading-color\":[\"table_header_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-secondary-color\":[\"button_bg_color\",\"disabled_button_bg_color\"]}\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#FFFFFF\";s:24:\"disabled_button_bg_color\";s:20:\"gcid-secondary-color\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:25:\"table_cell_custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";}}s:36:\"9b7624b3-f8ce-4c6d-bbc3-8ff588f5bd6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}s:36:\"1d9b1177-c744-467f-863f-7f711460a015\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";}s:20:\"et_pb_wc_cart_totals\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":24:{s:18:\"global_colors_info\";s:412:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\",\"placeholder_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#000000\";s:17:\"placeholder_color\";s:15:\"gcid-body-color\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7b8f0002-0b6c-4d81-a08d-6103808ac99e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:230:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"f20c05a4-0487-4f8e-b24f-261076d3acb3\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:438:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";}s:25:\"et_pb_wc_checkout_billing\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:541:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"fca9a8d3-2c75-4825-9fec-a1fa8960f08a\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:388:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"e0b09b91-6bae-4a01-af45-5d450c481744\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"global_colors_info\";s:482:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"tooltip_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";}s:26:\"et_pb_wc_checkout_shipping\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:385:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"4ecbf864-2a10-4b37-af97-bcd9e2531a28\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"6927a119-5d2a-4600-8713-40c06fe9f530\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";}s:33:\"et_pb_wc_checkout_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:306:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"a36b9eed-c2ec-47a5-87d1-ff5381269b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:214:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"031f6833-57f8-49c5-98ac-029ad54f299a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:394:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";}s:31:\"et_pb_wc_checkout_order_details\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:18:\"global_colors_info\";s:395:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"8a28b75d-be0b-46f0-b7a3-405f1264bfd9\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:346:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}s:36:\"1a129abb-e55d-4993-ba36-846ee365ed43\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:428:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";}s:30:\"et_pb_wc_checkout_payment_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#000000\";s:18:\"tooltip_text_color\";s:7:\"#FFFFFF\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:296:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"]}\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"239f7700-2611-4422-85b4-5ce1c7714740\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:280:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7bae7924-2970-40cc-b095-b2c098d2afc5\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:564:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";}s:12:\"et_pb_column\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":9:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Column Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9c2821aa-f112-49a0-bd92-423c1bf5b77b\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"be11a423-1b48-4cdb-ab89-d037068b25f8\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"b1f5171c-6eeb-4dee-972d-2f4897728bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"aa81cf7c-a285-4ec6-85e0-66a5153af803\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"a2103633-9b0a-4636-ab6c-c3beb2d72e5b\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Black Border\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";}}s:36:\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"b83c5c03-e41d-49f4-9a5a-dadd3193027a\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"d0cbb859-06b9-439f-8115-bd412d324f57\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:9:\"et_pb_row\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:12:\"Row Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"255f8d16-86e7-4ff7-937c-0c73ee5aa6f0\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"995dc606-35fc-48dd-8049-0a97e6fdd6d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"37c9b83a-6d05-4791-9b32-24aaf57da69e\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"5eed47bd-1ab1-47bd-9483-0814320c162b\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"0a1f0260-8b3b-4b1e-aaaf-2be5b75bbd07\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"b7979650-614b-4293-b430-4f509785ab9a\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"7b64b6a8-b512-4372-82ac-81803dc45605\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}}s:4:\"time\";i:1756839183000;s:5:\"label\";s:20:\"Imported From Layout\";}','off'),
(249,'et_pb_contact_form_9622d1288eb17ccd4131c63d3f26aecf','off','auto'),
(250,'et_divi_builder_presets_history_item_3','O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":71:{s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Section Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"db011b86-ee50-4be9-a091-b82566a64dcd\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"24dbf531-64ed-4d1b-840e-659c6e3a9b74\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"362ada36-891f-4be2-b115-0ee19aadf10c\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:16:\"background_color\";s:7:\"#000000\";}}s:36:\"301e8613-44f5-4bf4-9aa8-7c7ad262b106\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"64731693-a92a-40b4-9e40-0874d41d58f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#000000 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:2:\"{}\";}}}s:7:\"default\";s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";}s:13:\"et_pb_heading\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Heading Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Subheading\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:11:\"title_level\";s:2:\"h4\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"14px\";s:22:\"title_font_size_tablet\";s:4:\"13px\";s:21:\"title_font_size_phone\";s:4:\"12px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:6:\"0.08em\";s:17:\"title_line_height\";s:5:\"1.6em\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 2\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h2\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"7dc66019-4936-4070-a021-04afee121534\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 3\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h3\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 4\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h4\";s:15:\"title_font_size\";s:4:\"31px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 5\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h5\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 6\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h6\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";}s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";}}s:36:\"30b0cf31-fbc5-465c-beb7-b33ed988449b\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}s:36:\"b8fc1358-9f09-46b7-9534-de79de7fbe3b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:16:\"text_line_height\";s:5:\"1.8em\";s:9:\"link_font\";s:8:\"||||||||\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":132:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}}s:7:\"default\";s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":11:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:42:\"{\"gcid-primary-color\":[\"button_bg_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:9:\"off|hover\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Primary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:73:\"{\"gcid-primary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Primary Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"1b25a799-02b0-4096-b12f-dfe461045ebd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Secondary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"button_bg_color\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"da11c078-ec2d-4b1f-8568-5d5fbf909983\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Secondary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:75:\"{\"gcid-secondary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:20:\"gcid-secondary-color\";}}s:36:\"aea6612e-fe2b-464e-8d62-d5d38604b99c\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Black\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"1c051a38-3495-4819-a920-8f590ba49d01\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Black Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:18:\"global_colors_info\";s:78:\"{\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"8f954a0a-398e-40f7-a7c5-bbf546dbeff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Black Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:18:\"global_colors_info\";s:51:\"{\"gcid-primary-color\":[\"button_text_color__hover\"]}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:17:\"button_text_color\";s:7:\"#000000\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"4f331d65-dd4c-4e27-bcc2-6b4badd503d5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance White\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:9:\"off|hover\";}}s:36:\"3b6f0607-3907-457d-803f-df7639345ab7\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance White Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:146:\"{\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\":[\"button_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}}s:7:\"default\";s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:18:\"global_colors_info\";s:86:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"9255404c-899f-4e8e-8b42-47eaf97b334b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":116:{s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"title_level\";s:2:\"h1\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:32:\"button_text_color__hover_enabled\";s:11:\"off|desktop\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":139:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:105:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"bf8f2432-2198-42e1-be3e-2cab1a3faca1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:4:\"dark\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"64px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"12270984-f7d3-4488-99b8-09529e67403d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Hover\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:16:\"image_icon_width\";s:4:\"40px\";s:17:\"header_text_color\";s:19:\"RGBA(255,255,255,0)\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:14:\"custom_padding\";s:27:\"40%|40px|40%|40px|true|true\";s:21:\"custom_padding_tablet\";s:22:\"|30px||30px|false|true\";s:20:\"custom_padding_phone\";s:22:\"|20px||20px|false|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-primary-color\":[\"icon_color__hover\"]}\";s:10:\"icon_color\";s:19:\"RGBA(255,255,255,0)\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:14:\"icon_alignment\";s:4:\"left\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:16:\"background_blend\";s:8:\"multiply\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:16:\"box_shadow_style\";s:7:\"preset3\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";}}s:36:\"b8ea676a-bda4-461b-8fe0-8f1979a72473\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.25.2\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:2:\"{}\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"image_icon_width\";s:4:\"64px\";}}s:36:\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":111:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"20px\";s:17:\"content_max_width\";s:4:\"100%\";s:12:\"header_level\";s:2:\"h4\";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:8:\"on|phone\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.6em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"14px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:10:\"icon_color\";s:22:\"rgba(255,255,255,0.32)\";s:14:\"icon_alignment\";s:4:\"left\";}}}s:7:\"default\";s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Dark Grid\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":114:{s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"show_more\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"17px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"border_color_all\";s:7:\"#000000\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";}}s:36:\"16c411e2-07e5-41c0-bfea-c03f4cf94cb5\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Dark Fullwidth\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":115:{s:9:\"show_more\";s:2:\"on\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:9:\"fullwidth\";s:2:\"on\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:16:\"border_color_all\";s:7:\"#000000\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";}}}s:7:\"default\";s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";}s:17:\"et_pb_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Post Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":147:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:16:\"background_color\";s:7:\"#0000ff\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"use_bg_overlay\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"meta_font_size\";s:4:\"16px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:16:\"meta_line_height\";s:3:\"1em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:13:\"content_width\";s:4:\"auto\";s:17:\"content_max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:4:\"auto\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:8:\"relative\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:133:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";}}}s:7:\"default\";s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\",\"icon_color\"],\"gcid-heading-color\":[\"toggle_text_color\"]}\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:16:\"border_color_all\";s:7:\"#000000\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";}}}s:7:\"default\";s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";}s:20:\"et_pb_accordion_item\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":1:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Accordion Preset 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:14:\"custom_padding\";s:27:\"30px|0px|30px|0px|true|true\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_toggle\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Toggle Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:18:\"global_colors_info\";s:56:\"{\"gcid-primary-color\":[\"quote_text_color\",\"icon_color\"]}\";s:15:\"open_icon_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";s:14:\"custom_padding\";s:25:\"30px||30px|0px|true|false\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";}}}s:7:\"default\";s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";}s:13:\"et_pb_divider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Divider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:14:\"divider_weight\";s:3:\"2px\";}}}s:7:\"default\";s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";}s:20:\"et_pb_number_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Number Counter Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:44:\"{\"gcid-heading-color\":[\"number_text_color\"]}\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:8:\"on|phone\";s:23:\"number_font_size_tablet\";s:4:\"32px\";}}s:36:\"3a23276e-b2b0-49e6-9594-6701dcdb3a27\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:17:\"number_text_color\";s:7:\"#FFFFFF\";s:16:\"number_font_size\";s:4:\"50px\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";}}}s:7:\"default\";s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";}s:10:\"et_pb_icon\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Icon Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"64px\";}}s:36:\"7c5d6aa5-e119-4abc-a9af-ca66274d650c\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"32px\";}}}s:7:\"default\";s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";}s:25:\"et_pb_social_media_follow\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Social Media Follow Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#000000\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}s:36:\"c8d5b2aa-c955-470e-ae32-005f9e1e409b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#FFFFFF\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}}s:7:\"default\";s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";}s:33:\"et_pb_social_media_follow_network\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Social Network Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Freelance No Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{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.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":25:{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:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"body_text_color\"],\"gcid-heading-color\":[\"header_text_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";}s:11:\"et_pb_image\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Image Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"b01c845f-39f9-4f44-9643-e98852a8859f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"use_overlay\";s:2:\"on\";s:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"global_colors_info\";s:69:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"hover_overlay_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_video_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Video Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8e6f008e-8c87-46d7-b368-6873084fc353\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:18:\"show_image_overlay\";s:2:\"on\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_audio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Audio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";}s:9:\"et_pb_cta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Call To Action Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";}s:21:\"et_pb_countdown_timer\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Countdown Timer Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:84:\"{\"gcid-heading-color\":[\"numbers_text_color\"],\"gcid-body-color\":[\"label_text_color\"]}\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";}s:20:\"et_pb_circle_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Circle Counter Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"circle_color_alpha\";s:1:\"1\";s:18:\"global_colors_info\";s:105:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"circle_color\"],\"gcid-heading-color\":[\"number_text_color\"]}\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";}s:14:\"et_pb_counters\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Bar Counters Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:108:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"]}\";s:16:\"background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"background_enable_color\";s:2:\"on\";s:10:\"title_font\";s:65:\"--et_global_heading_font|--et_global_heading_font_weight||on|||||\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:15:\"title_font_size\";s:4:\"14px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";}s:11:\"et_pb_login\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Login Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";}s:12:\"et_pb_search\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Search Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"button_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:25:\"1em|1em|1em|1em|true|true\";s:12:\"border_radii\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:45:\"{\"gcid-body-color\":[\"form_field_text_color\"]}\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"1px\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";}s:20:\"et_pb_pricing_tables\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Pricing Tables Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"text_orientation\";s:6:\"center\";s:14:\"custom_padding\";s:19:\"30px||||false|false\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:16:\"border_width_all\";s:3:\"0px\";s:18:\"global_colors_info\";s:299:\"{\"gcid-body-color\":[\"bullet_color\",\"body_text_color\",\"currency_frequency_text_color\"],\"gcid-heading-color\":[\"header_text_color\",\"subheader_text_color\",\"price_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"featured_table_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:18:\"gcid-heading-color\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";}s:10:\"et_pb_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Menu Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";}}s:36:\"89db62a1-3898-47f0-91e7-3a2339cd00f5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":95:{s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"menu_style\";s:12:\"left_aligned\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:15:\"logo_max_height\";s:4:\"64px\";s:15:\"cart_icon_color\";s:7:\"#FFFFFF\";s:17:\"search_icon_color\";s:7:\"#FFFFFF\";s:15:\"menu_icon_color\";s:7:\"#FFFFFF\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:7:\"#FFFFFF\";s:14:\"menu_font_size\";s:4:\"16px\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:18:\"global_colors_info\";s:130:\"{\"gcid-body-color\":[\"dropdown_menu_text_color\",\"mobile_menu_text_color\"],\"gcid-primary-color\":[\"dropdown_menu_active_link_color\"]}\";}}}s:7:\"default\";s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";}s:16:\"et_pb_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Post Title Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:18:\"global_colors_info\";s:2:\"{}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}s:36:\"62a478a3-7ef6-49d6-9539-6701b57634c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":76:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:9:\"meta_font\";s:13:\"|700||on|||||\";}}}s:7:\"default\";s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";}s:13:\"et_pb_sidebar\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Sidebar Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"show_border\";s:3:\"off\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";}s:14:\"et_pb_post_nav\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Post Navigation Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"title_font\";s:13:\"|700||on|||||\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}s:36:\"eb4ff970-88a1-4ee4-b6a0-c1e2a909623b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":59:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";}s:14:\"et_pb_comments\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Comments Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:15:\"meta_text_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"6c4b3436-ad9f-4943-8d4f-b230b960eff4\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:17:\"background_layout\";s:4:\"dark\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";}s:17:\"et_pb_team_member\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Person Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";}s:17:\"et_pb_testimonial\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Testimonial Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:154:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\"],\"gcid-heading-color\":[\"author_text_color\"],\"gcid-secondary-color\":[\"quote_icon_color\"]}\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:20:\"use_background_color\";s:3:\"off\";}}}s:7:\"default\";s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";}s:26:\"et_pb_filterable_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Filterable Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";}s:13:\"et_pb_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"Gallery Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";}s:15:\"et_pb_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";}s:10:\"et_pb_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"Tabs Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"active_tab_text_color\",\"body_quote_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";}s:20:\"et_pb_fullwidth_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Fullwidth Menu Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";}}}s:7:\"default\";s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";}s:26:\"et_pb_fullwidth_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Fullwidth Post Title Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:22:\"60px||60px||true|false\";s:26:\"custom_padding_last_edited\";s:9:\"on|tablet\";s:21:\"custom_padding_tablet\";s:22:\"30px||30px||true|false\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";}s:22:\"et_pb_fullwidth_header\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Fullwidth Header Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":50:{s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:22:\"12vw||12vw||true|false\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:18:\"global_colors_info\";s:155:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_overlay_color\"],\"gcid-primary-color\":[\"button_one_bg_color__hover\",\"button_two_bg_color__hover\"]}\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";}s:25:\"et_pb_fullwidth_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Fullwidth Portfolio Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";}s:27:\"et_pb_fullwidth_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"Fullwidth Post Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";}s:22:\"et_pb_fullwidth_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Fullwidth Slider Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"ae279531-550a-4732-9546-dae9056b368f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"ae279531-550a-4732-9546-dae9056b368f\";}s:20:\"et_pb_wc_cart_notice\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:18:\"global_colors_info\";s:463:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"title_link_text_color\"]}\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"ee785808-4221-48d1-8c31-1f15776922f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"fields_width\";s:7:\"default\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:15:\"title_font_size\";s:4:\"19px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:27:\"0em|0em|2em|0em|false|false\";s:14:\"custom_padding\";s:31:\"15px|15px|15px|15px|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:337:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"],\"gcid-primary-color\":[\"title_link_text_color\",\"button_bg_color\"]}\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"title_font_size_tablet\";s:4:\"15px\";s:21:\"title_font_size_phone\";s:4:\"14px\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";}}}s:7:\"default\";s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";}s:19:\"et_pb_wc_breadcrumb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:83:\"{\"gcid-primary-color\":[\"link_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"link_text_color\";s:18:\"gcid-primary-color\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}s:36:\"dbf1d986-41fd-43f8-992a-cd5577e28e10\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:14:\"link_font_size\";s:4:\"14px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"link_font\";s:10:\"||||on||||\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";}s:14:\"et_pb_wc_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:18:\"header_line_height\";s:5:\"1.3em\";s:16:\"header_font_size\";s:4:\"52px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"19857a48-497c-4a71-9e18-cd3d42ca9aa0\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":63:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";}s:15:\"et_pb_wc_rating\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:87:\"{\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:14:\"body_font_size\";s:4:\"13px\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";}}s:36:\"84120d40-5261-407a-8d37-0ded40340981\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:6:\"inline\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:46:\"{\"gcid-secondary-color\":[\"rating_text_color\"]}\";}}}s:7:\"default\";s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";}s:20:\"et_pb_wc_description\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:18:\"global_colors_info\";s:110:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"24px\";s:27:\"body_quote_font_size_tablet\";s:4:\"20px\";s:26:\"body_quote_font_size_phone\";s:4:\"16px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:15:\"quote_font_size\";s:4:\"30px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";}}s:36:\"c8222a6f-3f16-4d95-86f9-cc46f51154cd\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":110:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";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:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"26px\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:3:\"1em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"22px\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:3:\"1em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"18px\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:3:\"1em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"16px\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:3:\"1em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"14px\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:3:\"1em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:18:\"global_colors_info\";s:68:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";}}}s:7:\"default\";s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";}s:14:\"et_pb_wc_price\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:18:\"global_colors_info\";s:42:\"{\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:16:\"body_line_height\";s:5:\"1.4em\";}}s:36:\"bdcee4d2-4371-4914-81e3-2208e92907a7\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:16:\"body_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";}s:20:\"et_pb_wc_add_to_cart\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:18:\"global_colors_info\";s:425:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\",\"fields_background_color\",\"dropdown_menus_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-body-color\":[\"fields_text_color\",\"dropdown_menus_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-heading-color\":[\"field_label_text_color\"]}\";s:23:\"fields_background_color\";s:19:\"rgba(255,255,255,0)\";s:17:\"fields_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#000000\";s:25:\"dropdown_menus_text_color\";s:15:\"gcid-body-color\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"field_label_text_color\";s:18:\"gcid-heading-color\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"93f79e07-81c5-4820-8711-c53547d99bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":120:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:256:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"431f40ed-e0ca-4212-b551-02a113a1b9ab\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:16:\"background_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:506:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"form_field_background_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";}s:13:\"et_pb_wc_meta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:66:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all\"]}\";s:16:\"border_color_all\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";}}}s:7:\"default\";s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";}s:15:\"et_pb_wc_images\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:130:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"rating_text_color\",\"icon_hover_color\"],\"gcid-secondary-color\":[\"sale_badge_color\"]}\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";}s:16:\"et_pb_wc_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"caption_text_color\";s:7:\"#000000\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}s:36:\"0d066721-06f7-476b-ae82-e57ce5ec69b3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:9:\"fullwidth\";s:3:\"off\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";}s:24:\"et_pb_wc_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"attribute_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_bottom_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"3c333308-c986-4d69-9b7b-4686f240943d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:10:\"show_title\";s:2:\"on\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:211:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_bottom_table_cell\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";}s:13:\"et_pb_wc_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"active_tab_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";}s:25:\"et_pb_wc_related_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"e6382043-c9e0-4441-ba03-e7df51b3001e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:215:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";}s:10:\"et_pb_shop\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:15:\"show_pagination\";s:2:\"on\";s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"1512ab9e-8861-43c3-8f8e-5799a3b94980\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":16:{s:15:\"show_pagination\";s:2:\"on\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";}s:20:\"et_pb_wc_cross_sells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:43:\"{\"gcid-heading-color\":[\"price_text_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ffbbfb57-7d10-4b8a-8b50-24275510fe29\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";}s:16:\"et_pb_wc_upsells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"a095913c-59c5-4d31-8e2b-957477833677\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";}s:16:\"et_pb_wc_reviews\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9daec761-3963-4984-81cf-147432a59eba\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:16:\"rating_font_size\";s:2:\"14\";s:18:\"global_colors_info\";s:424:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"rating_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"meta_text_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"a8191bd4-7afd-4a27-861f-ae38f8ce63ff\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:291:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"cb94fb63-b4d6-4a73-9e61-6b83734df148\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:518:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"border_color_all_fields\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"9daec761-3963-4984-81cf-147432a59eba\";}s:22:\"et_pb_wc_cart_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"global_colors_info\";s:555:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-heading-color\":[\"table_header_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-secondary-color\":[\"button_bg_color\",\"disabled_button_bg_color\"]}\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#FFFFFF\";s:24:\"disabled_button_bg_color\";s:20:\"gcid-secondary-color\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:25:\"table_cell_custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";}}s:36:\"9b7624b3-f8ce-4c6d-bbc3-8ff588f5bd6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}s:36:\"1d9b1177-c744-467f-863f-7f711460a015\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";}s:20:\"et_pb_wc_cart_totals\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":24:{s:18:\"global_colors_info\";s:412:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\",\"placeholder_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#000000\";s:17:\"placeholder_color\";s:15:\"gcid-body-color\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7b8f0002-0b6c-4d81-a08d-6103808ac99e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:230:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"f20c05a4-0487-4f8e-b24f-261076d3acb3\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:438:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";}s:25:\"et_pb_wc_checkout_billing\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:541:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"fca9a8d3-2c75-4825-9fec-a1fa8960f08a\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:388:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"e0b09b91-6bae-4a01-af45-5d450c481744\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"global_colors_info\";s:482:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"tooltip_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";}s:26:\"et_pb_wc_checkout_shipping\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:385:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"4ecbf864-2a10-4b37-af97-bcd9e2531a28\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"6927a119-5d2a-4600-8713-40c06fe9f530\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";}s:33:\"et_pb_wc_checkout_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:306:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"a36b9eed-c2ec-47a5-87d1-ff5381269b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:214:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"031f6833-57f8-49c5-98ac-029ad54f299a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:394:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";}s:31:\"et_pb_wc_checkout_order_details\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:18:\"global_colors_info\";s:395:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"8a28b75d-be0b-46f0-b7a3-405f1264bfd9\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:346:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}s:36:\"1a129abb-e55d-4993-ba36-846ee365ed43\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:428:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";}s:30:\"et_pb_wc_checkout_payment_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#000000\";s:18:\"tooltip_text_color\";s:7:\"#FFFFFF\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:296:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"]}\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"239f7700-2611-4422-85b4-5ce1c7714740\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:280:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7bae7924-2970-40cc-b095-b2c098d2afc5\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:564:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";}s:12:\"et_pb_column\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":9:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Column Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"9c2821aa-f112-49a0-bd92-423c1bf5b77b\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"be11a423-1b48-4cdb-ab89-d037068b25f8\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"b1f5171c-6eeb-4dee-972d-2f4897728bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"aa81cf7c-a285-4ec6-85e0-66a5153af803\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"a2103633-9b0a-4636-ab6c-c3beb2d72e5b\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Black Border\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";}}s:36:\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"b83c5c03-e41d-49f4-9a5a-dadd3193027a\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"d0cbb859-06b9-439f-8115-bd412d324f57\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:9:\"et_pb_row\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:12:\"Row Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.27.4\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":0:{}}s:36:\"255f8d16-86e7-4ff7-937c-0c73ee5aa6f0\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"995dc606-35fc-48dd-8049-0a97e6fdd6d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"37c9b83a-6d05-4791-9b32-24aaf57da69e\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"5eed47bd-1ab1-47bd-9483-0814320c162b\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"0a1f0260-8b3b-4b1e-aaaf-2be5b75bbd07\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"b7979650-614b-4293-b430-4f509785ab9a\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"7b64b6a8-b512-4372-82ac-81803dc45605\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}}s:4:\"time\";i:1756839185000;s:5:\"label\";s:20:\"Imported From Layout\";}','off'),
(255,'et_divi_builder_presets_history_item_4','O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":71:{s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":7:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Section Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"db011b86-ee50-4be9-a091-b82566a64dcd\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"24dbf531-64ed-4d1b-840e-659c6e3a9b74\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"362ada36-891f-4be2-b115-0ee19aadf10c\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:16:\"background_color\";s:7:\"#000000\";}}s:36:\"301e8613-44f5-4bf4-9aa8-7c7ad262b106\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"64731693-a92a-40b4-9e40-0874d41d58f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#000000 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:2:\"{}\";}}}s:7:\"default\";s:36:\"e5566d04-c710-43b2-a233-1452b5bce7ee\";}s:13:\"et_pb_heading\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Heading Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Subheading\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:11:\"title_level\";s:2:\"h4\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"14px\";s:22:\"title_font_size_tablet\";s:4:\"13px\";s:21:\"title_font_size_phone\";s:4:\"12px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:6:\"0.08em\";s:17:\"title_line_height\";s:5:\"1.6em\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 2\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h2\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";}}s:36:\"7dc66019-4936-4070-a021-04afee121534\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 3\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h3\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 4\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h4\";s:15:\"title_font_size\";s:4:\"31px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 5\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h5\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Heading 6\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"title_level\";s:2:\"h6\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"23e843ac-c094-4b39-a5f7-5e8e40943721\";}s:10:\"et_pb_text\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Text Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";}}s:36:\"30b0cf31-fbc5-465c-beb7-b33ed988449b\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}s:36:\"b8fc1358-9f09-46b7-9534-de79de7fbe3b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:16:\"text_line_height\";s:5:\"1.8em\";s:9:\"link_font\";s:8:\"||||||||\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":132:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.8em\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:16:\"header_font_size\";s:4:\"72px\";s:23:\"header_font_size_tablet\";s:4:\"44px\";s:22:\"header_font_size_phone\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.3em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"52px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:5:\"1.3em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"38px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:5:\"1.4em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"30px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:5:\"1.4em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"24px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:5:\"1.4em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"19px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:5:\"1.4em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";}}}s:7:\"default\";s:36:\"7467d508-8d80-43ee-b533-9d51832aaf4f\";}s:12:\"et_pb_button\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":11:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Button Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:18:\"global_colors_info\";s:2:\"{}\";}}s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:18:\"global_colors_info\";s:42:\"{\"gcid-primary-color\":[\"button_bg_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:9:\"off|hover\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Primary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:73:\"{\"gcid-primary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Primary Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"1b25a799-02b0-4096-b12f-dfe461045ebd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Secondary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"button_bg_color\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"da11c078-ec2d-4b1f-8568-5d5fbf909983\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Secondary Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:75:\"{\"gcid-secondary-color\":[\"button_border_color\",\"button_text_color__hover\"]}\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:20:\"gcid-secondary-color\";}}s:36:\"aea6612e-fe2b-464e-8d62-d5d38604b99c\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Black\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"1c051a38-3495-4819-a920-8f590ba49d01\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Black Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:18:\"global_colors_info\";s:78:\"{\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}s:36:\"8f954a0a-398e-40f7-a7c5-bbf546dbeff5\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Black Text\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":9:{s:18:\"global_colors_info\";s:51:\"{\"gcid-primary-color\":[\"button_text_color__hover\"]}\";s:14:\"custom_padding\";s:20:\"|0px||0px|false|true\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:17:\"button_text_color\";s:7:\"#000000\";s:24:\"button_text_color__hover\";s:18:\"gcid-primary-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"button_bg_enable_color\";s:2:\"on\";}}s:36:\"4f331d65-dd4c-4e27-bcc2-6b4badd503d5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance White\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:9:\"off|hover\";}}s:36:\"3b6f0607-3907-457d-803f-df7639345ab7\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance White Outlined\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:14:\"custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:18:\"global_colors_info\";s:146:\"{\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\":[\"button_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"button_border_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";}}}s:7:\"default\";s:36:\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\";}s:18:\"et_pb_contact_form\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:31:\"Freelance Contact Form Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:18:\"global_colors_info\";s:86:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"9255404c-899f-4e8e-8b42-47eaf97b334b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":116:{s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"title_level\";s:2:\"h1\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:32:\"button_text_color__hover_enabled\";s:11:\"off|desktop\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\";}s:12:\"et_pb_signup\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:30:\"Freelance Email Optin Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":139:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:105:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color\"],\"gcid-body-color\":[\"form_field_text_color\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"bf8f2432-2198-42e1-be3e-2cab1a3faca1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:4:\"dark\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"background_color\";s:7:\"#0000ff\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:10:\"left_right\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:22:\"use_focus_border_color\";s:3:\"off\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"af8da295-8e8f-4516-81ac-ea2c7e6145bd\";}s:11:\"et_pb_blurb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":5:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Blurb Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"64px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"12270984-f7d3-4488-99b8-09529e67403d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Hover\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:16:\"image_icon_width\";s:4:\"40px\";s:17:\"header_text_color\";s:19:\"RGBA(255,255,255,0)\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:14:\"custom_padding\";s:27:\"40%|40px|40%|40px|true|true\";s:21:\"custom_padding_tablet\";s:22:\"|30px||30px|false|true\";s:20:\"custom_padding_phone\";s:22:\"|20px||20px|false|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:18:\"global_colors_info\";s:44:\"{\"gcid-primary-color\":[\"icon_color__hover\"]}\";s:10:\"icon_color\";s:19:\"RGBA(255,255,255,0)\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:14:\"icon_alignment\";s:4:\"left\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:23:\"background_enable_color\";s:2:\"on\";s:16:\"background_blend\";s:8:\"multiply\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:16:\"box_shadow_style\";s:7:\"preset3\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";}}s:36:\"b8ea676a-bda4-461b-8fe0-8f1979a72473\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.25.2\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:17:\"content_max_width\";s:4:\"100%\";s:9:\"animation\";s:3:\"off\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:18:\"global_colors_info\";s:2:\"{}\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"image_icon_width\";s:4:\"64px\";}}s:36:\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\";O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Freelance Light Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":111:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"icon_placement\";s:4:\"left\";s:16:\"image_icon_width\";s:4:\"20px\";s:17:\"content_max_width\";s:4:\"100%\";s:12:\"header_level\";s:2:\"h4\";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:8:\"on|phone\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:5:\"1.6em\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"14px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:7:\"#FFFFFF\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:10:\"icon_color\";s:22:\"rgba(255,255,255,0.32)\";s:14:\"icon_alignment\";s:4:\"left\";}}}s:7:\"default\";s:36:\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\";}s:10:\"et_pb_blog\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Blog Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Dark Grid\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":114:{s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"show_more\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"24px\";s:23:\"header_font_size_tablet\";s:4:\"20px\";s:22:\"header_font_size_phone\";s:4:\"17px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"border_color_all\";s:7:\"#000000\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";}}s:36:\"16c411e2-07e5-41c0-bfea-c03f4cf94cb5\";O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"Freelance Dark Fullwidth\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":115:{s:9:\"show_more\";s:2:\"on\";s:14:\"meta_font_size\";s:4:\"14px\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:9:\"fullwidth\";s:2:\"on\";s:11:\"use_overlay\";s:3:\"off\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:16:\"border_color_all\";s:7:\"#000000\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";}}}s:7:\"default\";s:36:\"b5c733e5-3269-497f-9570-54d5991f3824\";}s:17:\"et_pb_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:30:\"Freelance Post Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":147:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:16:\"background_color\";s:7:\"#0000ff\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"use_bg_overlay\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"meta_font_size\";s:4:\"16px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:16:\"meta_line_height\";s:3:\"1em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:3:\"1em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:3:\"1em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"14px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:3:\"1em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:6:\"center\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:13:\"content_width\";s:4:\"auto\";s:17:\"content_max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:4:\"auto\";s:3:\"off\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:8:\"relative\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:133:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";}}}s:7:\"default\";s:36:\"d371c759-21b8-47f9-8e2c-5d74bf36f095\";}s:15:\"et_pb_accordion\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Freelance Accordion Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:18:\"global_colors_info\";s:91:\"{\"gcid-primary-color\":[\"body_quote_text_color\"],\"gcid-heading-color\":[\"toggle_text_color\"]}\";}}s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\",\"icon_color\"],\"gcid-heading-color\":[\"toggle_text_color\"]}\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:16:\"border_color_all\";s:7:\"#000000\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";}}}s:7:\"default\";s:36:\"44f0e39a-6117-4ac2-92e2-c9104b870295\";}s:20:\"et_pb_accordion_item\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":1:{s:8:\"_initial\";O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"Freelance Accordion Preset 1\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:14:\"custom_padding\";s:27:\"30px|0px|30px|0px|true|true\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:8:\"_initial\";}s:12:\"et_pb_toggle\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Toggle Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:18:\"global_colors_info\";s:133:\"{\"gcid-secondary-color\":[\"open_icon_color\"],\"gcid-primary-color\":[\"body_quote_text_color\"],\"gcid-heading-color\":[\"title_text_color\"]}\";}}s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:18:\"global_colors_info\";s:56:\"{\"gcid-primary-color\":[\"quote_text_color\",\"icon_color\"]}\";s:15:\"open_icon_color\";s:7:\"#000000\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"0px\";s:19:\"border_width_bottom\";s:3:\"1px\";s:14:\"custom_padding\";s:25:\"30px||30px|0px|true|false\";s:10:\"icon_color\";s:18:\"gcid-primary-color\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";}}}s:7:\"default\";s:36:\"9c461d33-fa02-4ae2-94a2-229ab33727d4\";}s:13:\"et_pb_divider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Divider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:14:\"divider_weight\";s:3:\"2px\";}}}s:7:\"default\";s:36:\"bd052549-0f83-42ce-a9a3-b5c87bbb82fc\";}s:20:\"et_pb_number_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Number Counter Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:15:\"title_font_size\";s:4:\"24px\";s:22:\"title_font_size_tablet\";s:4:\"20px\";s:21:\"title_font_size_phone\";s:4:\"17px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:44:\"{\"gcid-heading-color\":[\"number_text_color\"]}\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:8:\"on|phone\";s:23:\"number_font_size_tablet\";s:4:\"32px\";}}s:36:\"3a23276e-b2b0-49e6-9594-6701dcdb3a27\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:17:\"number_text_color\";s:7:\"#FFFFFF\";s:16:\"number_font_size\";s:4:\"50px\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";}}}s:7:\"default\";s:36:\"bc1817d2-dd3a-4852-a388-46c2a8cbd992\";}s:10:\"et_pb_icon\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Icon Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"64px\";}}s:36:\"7c5d6aa5-e119-4abc-a9af-ca66274d650c\";O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"Freelance Dark Small\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:10:\"icon_width\";s:4:\"32px\";}}}s:7:\"default\";s:36:\"ebf6031f-939a-4df2-875e-2e93793b6a39\";}s:25:\"et_pb_social_media_follow\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"Freelance Social Media Follow Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#000000\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}s:36:\"c8d5b2aa-c955-470e-ae32-005f9e1e409b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"icon_color\";s:7:\"#FFFFFF\";s:13:\"custom_margin\";s:22:\"|-8px||-8px|false|true\";}}}s:7:\"default\";s:36:\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\";}s:33:\"et_pb_social_media_follow_network\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Social Network Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"Freelance No Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0382fcda-3b96-4920-9c14-f6b5046f95aa\";}s:12:\"et_pb_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":25:{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:13:\"custom_button\";s:2:\"on\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:123:\"{\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-body-color\":[\"body_text_color\"],\"gcid-heading-color\":[\"header_text_color\"]}\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"89f57368-82c7-484f-87bf-7fd1fd089159\";}s:11:\"et_pb_image\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Image Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"b01c845f-39f9-4f44-9643-e98852a8859f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:11:\"use_overlay\";s:2:\"on\";s:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"global_colors_info\";s:69:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"hover_overlay_color\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:18:\"et_pb_video_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:31:\"Freelance Video Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"8e6f008e-8c87-46d7-b368-6873084fc353\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:18:\"show_image_overlay\";s:2:\"on\";}}}s:7:\"default\";s:8:\"_initial\";}s:11:\"et_pb_audio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Audio Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";}}}s:7:\"default\";s:36:\"7b724b5f-6643-45f9-b7dc-f76dba8c8fcb\";}s:9:\"et_pb_cta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Call To Action Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.3em\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:49:\"{\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"0d48930b-8410-4f8d-a59c-2e960e83fcfd\";}s:21:\"et_pb_countdown_timer\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Countdown Timer Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:84:\"{\"gcid-heading-color\":[\"numbers_text_color\"],\"gcid-body-color\":[\"label_text_color\"]}\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"43faa2d8-db4e-4279-977d-0e62f357574d\";}s:20:\"et_pb_circle_counter\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Circle Counter Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"circle_color_alpha\";s:1:\"1\";s:18:\"global_colors_info\";s:105:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"circle_color\"],\"gcid-heading-color\":[\"number_text_color\"]}\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"6091d1d9-e544-4403-955e-c1e2ae370d9d\";}s:14:\"et_pb_counters\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:31:\"Freelance Bar Counters Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:108:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"]}\";s:16:\"background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"background_enable_color\";s:2:\"on\";s:10:\"title_font\";s:65:\"--et_global_heading_font|--et_global_heading_font_weight||on|||||\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:15:\"title_font_size\";s:4:\"14px\";s:12:\"bar_bg_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"1222a0ad-a67c-4e9b-acd5-0e2330a897f3\";}s:11:\"et_pb_login\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"Freelance Login Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":23:{s:23:\"background_enable_color\";s:3:\"off\";s:20:\"use_background_color\";s:3:\"off\";s:17:\"background_layout\";s:5:\"light\";s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"2b791d1f-5128-43aa-a242-9db714fee45d\";}s:12:\"et_pb_search\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Search Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"button_color\";s:7:\"#000000\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:25:\"1em|1em|1em|1em|true|true\";s:12:\"border_radii\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:45:\"{\"gcid-body-color\":[\"form_field_text_color\"]}\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"border_width_all\";s:3:\"1px\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ca2a72e9-24b8-4a3a-a793-e003f712718c\";}s:20:\"et_pb_pricing_tables\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Pricing Tables Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"text_orientation\";s:6:\"center\";s:14:\"custom_padding\";s:19:\"30px||||false|false\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:16:\"border_width_all\";s:3:\"0px\";s:18:\"global_colors_info\";s:299:\"{\"gcid-body-color\":[\"bullet_color\",\"body_text_color\",\"currency_frequency_text_color\"],\"gcid-heading-color\":[\"header_text_color\",\"subheader_text_color\",\"price_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"featured_table_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:17:\"header_text_color\";s:18:\"gcid-heading-color\";s:15:\"body_text_color\";s:15:\"gcid-body-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"header_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"30px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:18:\"gcid-heading-color\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"96f826f0-8232-4afc-b8e6-45f91e5bf649\";}s:10:\"et_pb_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Menu Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";}}s:36:\"89db62a1-3898-47f0-91e7-3a2339cd00f5\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":95:{s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"menu_style\";s:12:\"left_aligned\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:15:\"logo_max_height\";s:4:\"64px\";s:15:\"cart_icon_color\";s:7:\"#FFFFFF\";s:17:\"search_icon_color\";s:7:\"#FFFFFF\";s:15:\"menu_icon_color\";s:7:\"#FFFFFF\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:7:\"#FFFFFF\";s:14:\"menu_font_size\";s:4:\"16px\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:18:\"border_radii_image\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:18:\"global_colors_info\";s:130:\"{\"gcid-body-color\":[\"dropdown_menu_text_color\",\"mobile_menu_text_color\"],\"gcid-primary-color\":[\"dropdown_menu_active_link_color\"]}\";}}}s:7:\"default\";s:36:\"2f5866e6-af49-45da-b348-5238319c6f8b\";}s:16:\"et_pb_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:29:\"Freelance Post Title Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":10:{s:18:\"global_colors_info\";s:2:\"{}\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}s:36:\"62a478a3-7ef6-49d6-9539-6701b57634c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":76:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"title_level\";s:2:\"h1\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:14:\"meta_font_size\";s:4:\"14px\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:9:\"meta_font\";s:13:\"|700||on|||||\";}}}s:7:\"default\";s:36:\"c68f38c1-9349-4ebc-af88-a682ca890d94\";}s:13:\"et_pb_sidebar\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Sidebar Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:11:\"show_border\";s:3:\"off\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"a1b4c91c-38e4-477d-b5b1-d3aa7254ac92\";}s:14:\"et_pb_post_nav\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Post Navigation Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:10:\"title_font\";s:13:\"|700||on|||||\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}s:36:\"eb4ff970-88a1-4ee4-b6a0-c1e2a909623b\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":59:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:20:\"title_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\";}s:14:\"et_pb_comments\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:27:\"Freelance Comments Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:18:\"global_colors_info\";s:105:\"{\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:15:\"meta_text_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:8:\"on|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"6c4b3436-ad9f-4943-8d4f-b230b960eff4\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:17:\"background_layout\";s:4:\"dark\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:68:\"{\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\";}s:17:\"et_pb_team_member\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Person Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:48:\"{\"gcid-primary-color\":[\"body_quote_text_color\"]}\";s:16:\"header_font_size\";s:4:\"30px\";s:23:\"header_font_size_tablet\";s:4:\"24px\";s:22:\"header_font_size_phone\";s:4:\"19px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"14c4a457-c98e-48dd-ae4b-6680fb9433ca\";}s:17:\"et_pb_testimonial\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:30:\"Freelance Testimonial Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:1:{s:18:\"global_colors_info\";s:154:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\"],\"gcid-heading-color\":[\"author_text_color\"],\"gcid-secondary-color\":[\"quote_icon_color\"]}\";}}s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:154:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"quote_text_color\"],\"gcid-heading-color\":[\"author_text_color\"],\"gcid-secondary-color\":[\"quote_icon_color\"]}\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:20:\"use_background_color\";s:3:\"off\";}}}s:7:\"default\";s:36:\"06782cea-834f-47b5-a6cf-b17122823fdb\";}s:26:\"et_pb_filterable_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Filterable Portfolio Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"ff9dd5d4-7e7f-4898-a3af-fff2ac2b3d48\";}s:13:\"et_pb_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"Freelance Gallery Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":12:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"37a5680d-779e-4f8a-9c3f-fbfd32838735\";}s:15:\"et_pb_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"Freelance Portfolio Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#000000\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"49a96482-9f06-41a5-b9be-3d3f6e469cb0\";}s:10:\"et_pb_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"Freelance Tabs Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"active_tab_text_color\",\"body_quote_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"6b81e1a9-f8c7-4ddc-9874-06674ab2e9fb\";}s:20:\"et_pb_fullwidth_menu\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:33:\"Freelance Fullwidth Menu Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:119:\"{\"gcid-primary-color\":[\"active_link_color\",\"dropdown_menu_active_link_color\"],\"gcid-heading-color\":[\"menu_text_color\"]}\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";}}}s:7:\"default\";s:36:\"a64b5f0e-09b7-49e1-80b8-4d79d6283ed3\";}s:26:\"et_pb_fullwidth_post_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Fullwidth Post Title Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:2:\"{}\";s:14:\"custom_padding\";s:22:\"60px||60px||true|false\";s:26:\"custom_padding_last_edited\";s:9:\"on|tablet\";s:21:\"custom_padding_tablet\";s:22:\"30px||30px||true|false\";s:15:\"meta_text_color\";s:7:\"#000000\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"7fedd56e-fc07-40da-825e-90378daf5572\";}s:22:\"et_pb_fullwidth_header\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Freelance Fullwidth Header Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":50:{s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:22:\"12vw||12vw||true|false\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:18:\"global_colors_info\";s:155:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_overlay_color\"],\"gcid-primary-color\":[\"button_one_bg_color__hover\",\"button_two_bg_color__hover\"]}\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:15:\"title_font_size\";s:4:\"72px\";s:22:\"title_font_size_tablet\";s:4:\"44px\";s:21:\"title_font_size_phone\";s:4:\"30px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.3em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"3474b13f-713f-4a89-8929-d985eca71be0\";}s:25:\"et_pb_fullwidth_portfolio\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"Freelance Fullwidth Portfolio Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:18:\"caption_text_color\";s:7:\"#000000\";}}}s:7:\"default\";s:36:\"5f39ba96-7e7c-4734-a2a3-9b36a64a7787\";}s:27:\"et_pb_fullwidth_post_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:40:\"Freelance Fullwidth Post Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"4a123c8c-b422-44c2-9fec-c30ed3a62c29\";}s:22:\"et_pb_fullwidth_slider\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Freelance Fullwidth Slider Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"ae279531-550a-4732-9546-dae9056b368f\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:17:\"text_shadow_style\";s:7:\"preset3\";s:17:\"text_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:9:\"on|tablet\";s:18:\"header_line_height\";s:5:\"1.3em\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:114:\"{\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"bg_overlay_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"ae279531-550a-4732-9546-dae9056b368f\";}s:20:\"et_pb_wc_cart_notice\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:29:\"Freelance Woo Notice Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:18:\"global_colors_info\";s:463:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"title_link_text_color\"]}\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"title_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:16:\"background_color\";s:7:\"#000000\";s:23:\"background_enable_color\";s:2:\"on\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";}}s:36:\"ee785808-4221-48d1-8c31-1f15776922f1\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"fields_width\";s:7:\"default\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:15:\"title_font_size\";s:4:\"19px\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:27:\"0em|0em|2em|0em|false|false\";s:14:\"custom_padding\";s:31:\"15px|15px|15px|15px|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:18:\"gcid-heading-color\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:337:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"required_field_indicator_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"background_color\"],\"gcid-heading-color\":[\"title_text_color\"],\"gcid-primary-color\":[\"title_link_text_color\",\"button_bg_color\"]}\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"title_font_size_tablet\";s:4:\"15px\";s:21:\"title_font_size_phone\";s:4:\"14px\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";}}}s:7:\"default\";s:36:\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\";}s:19:\"et_pb_wc_breadcrumb\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Woo Breadcrumbs Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:83:\"{\"gcid-primary-color\":[\"link_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"link_text_color\";s:18:\"gcid-primary-color\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}s:36:\"dbf1d986-41fd-43f8-992a-cd5577e28e10\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":68:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:14:\"link_font_size\";s:4:\"14px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:5:\"1.7em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:9:\"link_font\";s:10:\"||||on||||\";s:13:\"custom_margin\";s:18:\"||0px||false|false\";}}}s:7:\"default\";s:36:\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\";}s:14:\"et_pb_wc_title\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Woo Product Title Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:18:\"header_line_height\";s:5:\"1.3em\";s:16:\"header_font_size\";s:4:\"52px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";}}s:36:\"19857a48-497c-4a71-9e18-cd3d42ca9aa0\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":63:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:13:\"custom_margin\";s:19:\"||10px||false|false\";s:18:\"global_colors_info\";s:132:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";s:16:\"header_font_size\";s:4:\"52px\";s:23:\"header_font_size_tablet\";s:4:\"36px\";s:22:\"header_font_size_phone\";s:4:\"26px\";s:28:\"header_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"header_line_height\";s:5:\"1.3em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"7d135913-e934-4894-91c3-7ff78bb6bf2d\";}s:15:\"et_pb_wc_rating\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:37:\"Freelance Woo Product Rating Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":4:{s:18:\"global_colors_info\";s:87:\"{\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-heading-color\":[\"body_text_color\"]}\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:14:\"body_font_size\";s:4:\"13px\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";}}s:36:\"84120d40-5261-407a-8d37-0ded40340981\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:6:\"layout\";s:6:\"inline\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:14:\"body_font_size\";s:4:\"13px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:18:\"global_colors_info\";s:46:\"{\"gcid-secondary-color\":[\"rating_text_color\"]}\";}}}s:7:\"default\";s:36:\"1020931a-6660-4e63-837c-8506c613e23b\";}s:20:\"et_pb_wc_description\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:42:\"Freelance Woo Product Description Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:18:\"global_colors_info\";s:110:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"24px\";s:27:\"body_quote_font_size_tablet\";s:4:\"20px\";s:26:\"body_quote_font_size_phone\";s:4:\"16px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:18:\"gcid-primary-color\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:15:\"quote_font_size\";s:4:\"30px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";}}s:36:\"c8222a6f-3f16-4d95-86f9-cc46f51154cd\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":110:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.8em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:23:\"quote_text_shadow_style\";s:4:\"none\";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:24:\"header_text_shadow_style\";s:4:\"none\";s:18:\"header_2_font_size\";s:4:\"26px\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:20:\"header_2_line_height\";s:3:\"1em\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:18:\"header_3_font_size\";s:4:\"22px\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:20:\"header_3_line_height\";s:3:\"1em\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:18:\"header_4_font_size\";s:4:\"18px\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:20:\"header_4_line_height\";s:3:\"1em\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:18:\"header_5_font_size\";s:4:\"16px\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:20:\"header_5_line_height\";s:3:\"1em\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:18:\"header_6_font_size\";s:4:\"14px\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:20:\"header_6_line_height\";s:3:\"1em\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:5:\"light\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:18:\"global_colors_info\";s:68:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"]}\";}}}s:7:\"default\";s:36:\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\";}s:14:\"et_pb_wc_price\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Woo Product Price Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":3:{s:18:\"global_colors_info\";s:42:\"{\"gcid-heading-color\":[\"body_text_color\"]}\";s:15:\"body_text_color\";s:18:\"gcid-heading-color\";s:16:\"body_line_height\";s:5:\"1.4em\";}}s:36:\"bdcee4d2-4371-4914-81e3-2208e92907a7\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:16:\"body_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"f1d6c355-d894-4336-bde7-85edd4cc91e8\";}s:20:\"et_pb_wc_add_to_cart\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:42:\"Freelance Woo Product Add To Cart Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:18:\"global_colors_info\";s:425:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\",\"fields_background_color\",\"dropdown_menus_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-body-color\":[\"fields_text_color\",\"dropdown_menus_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"],\"gcid-heading-color\":[\"field_label_text_color\"]}\";s:23:\"fields_background_color\";s:19:\"rgba(255,255,255,0)\";s:17:\"fields_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#000000\";s:25:\"dropdown_menus_text_color\";s:15:\"gcid-body-color\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"field_label_text_color\";s:18:\"gcid-heading-color\";s:15:\"button_on_hover\";s:3:\"off\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";}}s:36:\"93f79e07-81c5-4820-8711-c53547d99bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":120:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:256:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}s:36:\"431f40ed-e0ca-4212-b551-02a113a1b9ab\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:23:\"background_enable_color\";s:2:\"on\";s:29:\"use_background_color_gradient\";s:3:\"off\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:20:\"field_label_position\";s:7:\"default\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"14px\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:22:\"use_focus_border_color\";s:3:\"off\";s:13:\"custom_button\";s:2:\"on\";s:16:\"button_text_size\";s:2:\"14\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:15:\"button_on_hover\";s:3:\"off\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:16:\"box_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:16:\"background_color\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:18:\"global_colors_info\";s:506:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"form_field_background_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";}}}s:7:\"default\";s:36:\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\";}s:13:\"et_pb_wc_meta\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Freelance Woo Product Meta Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":2:{s:18:\"global_colors_info\";s:66:\"{\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all\"]}\";s:16:\"border_color_all\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";}}s:36:\"cf69f32d-b224-4142-b75c-14ce15a49f95\";O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.26.0\";s:8:\"settings\";a:5:{s:18:\"global_colors_info\";s:66:\"{\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all\"]}\";s:16:\"border_color_all\";s:21:\"rgba(255,255,255,0.6)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";}}}s:7:\"default\";s:36:\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\";}s:15:\"et_pb_wc_images\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:37:\"Freelance Woo Product Images Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:130:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"rating_text_color\",\"icon_hover_color\"],\"gcid-secondary-color\":[\"sale_badge_color\"]}\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"1952e3e4-e4c3-484a-b684-634695f4677b\";}s:16:\"et_pb_wc_gallery\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"Freelance Woo Product Gallery Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:9:\"fullwidth\";s:3:\"off\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"caption_text_color\";s:7:\"#000000\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}s:36:\"0d066721-06f7-476b-ae82-e57ce5ec69b3\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:9:\"fullwidth\";s:3:\"off\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:18:\"global_colors_info\";s:44:\"{\"gcid-secondary-color\":[\"zoom_icon_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";}}}s:7:\"default\";s:36:\"5cdeb86c-d8b1-4c7a-87f3-0b1e8490d77e\";}s:24:\"et_pb_wc_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:42:\"Freelance Woo Product Information Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"attribute_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_bottom_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";}}s:36:\"3c333308-c986-4d69-9b7b-4686f240943d\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:10:\"show_title\";s:2:\"on\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:211:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_bottom_table_cell\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\";}s:13:\"et_pb_wc_tabs\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":2:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Freelance Woo Product Tabs Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"Freelance Primary\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:18:\"global_colors_info\";s:72:\"{\"gcid-primary-color\":[\"body_quote_text_color\",\"active_tab_text_color\"]}\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";}}}s:7:\"default\";s:36:\"651f302e-8447-4bcd-a970-f40c2f3152af\";}s:25:\"et_pb_wc_related_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Woo Related Products Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:257:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"e6382043-c9e0-4441-ba03-e7df51b3001e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:215:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"52px\";s:22:\"title_font_size_tablet\";s:4:\"36px\";s:21:\"title_font_size_phone\";s:4:\"26px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.3em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\";}s:10:\"et_pb_shop\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:31:\"Freelance Woo Products Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:15:\"show_pagination\";s:2:\"on\";s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"1512ab9e-8861-43c3-8f8e-5799a3b94980\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":16:{s:15:\"show_pagination\";s:2:\"on\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"1b9901c8-de6e-46a1-af30-113259ab765d\";}s:20:\"et_pb_wc_cross_sells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Woo Cross Sells Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:18:\"global_colors_info\";s:43:\"{\"gcid-heading-color\":[\"price_text_color\"]}\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"ffbbfb57-7d10-4b8a-8b50-24275510fe29\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":7:{s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"19px\";s:22:\"title_font_size_tablet\";s:4:\"17px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"daebb537-fb7f-4f75-ac18-ed281f43652c\";}s:16:\"et_pb_wc_upsells\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":3:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:37:\"Freelance Woo Product Upsell Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":18:{s:18:\"global_colors_info\";s:126:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"],\"gcid-heading-color\":[\"price_text_color\"]}\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";}}s:36:\"a095913c-59c5-4d31-8e2b-957477833677\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:84:\"{\"gcid-secondary-color\":[\"icon_hover_color\",\"rating_text_color\",\"sale_badge_color\"]}\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}}s:7:\"default\";s:36:\"5fdf7695-27d6-4649-b9bb-8ccb02d83d69\";}s:16:\"et_pb_wc_reviews\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"Freelance Woo Product Reviews Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"9daec761-3963-4984-81cf-147432a59eba\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:16:\"rating_font_size\";s:2:\"14\";s:18:\"global_colors_info\";s:424:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"rating_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"meta_text_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"a8191bd4-7afd-4a27-861f-ae38f8ce63ff\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:291:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"cb94fb63-b4d6-4a73-9e61-6b83734df148\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:16:\"rating_font_size\";s:2:\"14\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:518:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\",\"read_more_text_color\",\"pagination_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\",\"border_color_all_fields\"],\"gcid-secondary-color\":[\"rating_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:15:\"title_font_size\";s:4:\"30px\";s:22:\"title_font_size_tablet\";s:4:\"24px\";s:21:\"title_font_size_phone\";s:4:\"19px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:17:\"background_layout\";s:4:\"dark\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"9daec761-3963-4984-81cf-147432a59eba\";}s:22:\"et_pb_wc_cart_products\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:36:\"Freelance Woo Cart Products Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"global_colors_info\";s:555:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-heading-color\":[\"table_header_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-secondary-color\":[\"button_bg_color\",\"disabled_button_bg_color\"]}\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:20:\"gcid-secondary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#FFFFFF\";s:24:\"disabled_button_bg_color\";s:20:\"gcid-secondary-color\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:25:\"table_cell_custom_padding\";s:20:\"|0px||0px|false|true\";s:32:\"button_text_color__hover_enabled\";s:9:\"off|hover\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";}}s:36:\"9b7624b3-f8ce-4c6d-bbc3-8ff588f5bd6f\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}s:36:\"1d9b1177-c744-467f-863f-7f711460a015\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:22:\"custom_disabled_button\";s:2:\"on\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:434:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"button_bg_color__hover\",\"disabled_button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:8:\"on|hover\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:24:\"disabled_button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"67b57bd1-5668-4def-9a21-bb15c0f16d24\";}s:20:\"et_pb_wc_cart_totals\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:34:\"Freelance Woo Cart Totals Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":24:{s:18:\"global_colors_info\";s:412:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"],\"gcid-body-color\":[\"form_field_text_color\",\"placeholder_color\"],\"gcid-primary-color\":[\"button_bg_color\",\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#000000\";s:17:\"placeholder_color\";s:15:\"gcid-body-color\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7b8f0002-0b6c-4d81-a08d-6103808ac99e\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:230:\"{\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"f20c05a4-0487-4f8e-b24f-261076d3acb3\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:29:\"16px|24px|16px|24px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:438:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\",\"button_bg_color__hover\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"0714e553-1d1c-43a7-8b9a-c4b8a0f594f7\";}s:25:\"et_pb_wc_checkout_billing\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Woo Checkout Billing Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:541:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"fca9a8d3-2c75-4825-9fec-a1fa8960f08a\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:388:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"e0b09b91-6bae-4a01-af45-5d450c481744\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"global_colors_info\";s:482:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"tooltip_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-heading-color\":[\"form_notice_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\";}s:26:\"et_pb_wc_checkout_shipping\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:40:\"Freelance Woo Checkout Shipping Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":13:{s:18:\"global_colors_info\";s:385:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"required_field_indicator_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"4ecbf864-2a10-4b37-af97-bcd9e2531a28\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"6927a119-5d2a-4600-8713-40c06fe9f530\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:18:\"global_colors_info\";s:427:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\",\"required_field_indicator_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"RGBA(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:15:\"title_font_size\";s:4:\"20px\";s:22:\"title_font_size_tablet\";s:4:\"18px\";s:21:\"title_font_size_phone\";s:4:\"15px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"8687a5a7-6b2e-4471-a2b0-740665641f8e\";}s:33:\"et_pb_wc_checkout_additional_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:43:\"Freelance Woo Checkout Information Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:18:\"global_colors_info\";s:306:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-heading-color\":[\"field_label_text_color\"],\"gcid-body-color\":[\"form_field_text_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:21:\"form_field_text_color\";s:15:\"gcid-body-color\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#000000\";}}s:36:\"a36b9eed-c2ec-47a5-87d1-ff5381269b61\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:214:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}s:36:\"031f6833-57f8-49c5-98ac-029ad54f299a\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":19:{s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:394:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-primary-color\":[\"quote_text_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:21:\"field_label_font_size\";s:4:\"13px\";}}}s:7:\"default\";s:36:\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\";}s:31:\"et_pb_wc_checkout_order_details\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Woo Checkout Details Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":11:{s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:18:\"global_colors_info\";s:395:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-heading-color\":[\"column_label_text_color\"],\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\":[\"border_color_all_table_cell\"]}\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:18:\"gcid-heading-color\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}s:36:\"8a28b75d-be0b-46f0-b7a3-405f1264bfd9\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":15:{s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:346:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";}}s:36:\"1a129abb-e55d-4993-ba36-846ee365ed43\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":20:{s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:18:\"global_colors_info\";s:428:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"]}\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:17:\"title_line_height\";s:5:\"1.4em\";}}}s:7:\"default\";s:36:\"53ad1e03-0cc2-4196-bd80-cb82b1b68606\";}s:30:\"et_pb_wc_checkout_payment_info\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":4:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:39:\"Freelance Woo Checkout Payment Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"Freelance Dark\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"form_notice_background_color\";s:7:\"#000000\";s:22:\"form_notice_text_color\";s:7:\"#FFFFFF\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#000000\";s:18:\"tooltip_text_color\";s:7:\"#FFFFFF\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:18:\"global_colors_info\";s:296:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color\"]}\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:15:\"button_bg_color\";s:18:\"gcid-primary-color\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"239f7700-2611-4422-85b4-5ce1c7714740\";O:8:\"stdClass\":6:{s:4:\"name\";s:15:\"Freelance Light\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:19:\"RGBA(255,255,255,0)\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:25:\"0em|0em|0em|0em|true|true\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:280:\"{\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"quote_border_color\",\"background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}s:36:\"7bae7924-2970-40cc-b095-b2c098d2afc5\";O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"Freelance Contained\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.26.0\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:16:\"background_color\";s:7:\"#000000\";s:13:\"custom_button\";s:2:\"on\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:8:\"on|phone\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:18:\"global_colors_info\";s:564:\"{\"gcid-c0bf3f6d-de8d-4e8d-bff6-42d75df106ff\":[\"button_bg_color\",\"button_border_color\",\"link_text_color\"],\"gcid-5b7ac2c2-80a2-4aa8-b1c0-048a2e5bf0b1\":[\"button_bg_color\",\"button_border_color\",\"quote_border_color\",\"background_color\"],\"gcid-fb058508-c2a6-4549-8589-16d9b02b4e7a\":[\"icon_text_color\"],\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\":[\"border_color_all_table_cell\"],\"gcid-72d6c164-340f-458d-b768-3600845f3bbf\":[\"form_field_background_color\"],\"gcid-heading-color\":[\"tooltip_text_color\",\"form_notice_text_color\"],\"gcid-primary-color\":[\"button_bg_color__hover\"]}\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:15:\"button_on_hover\";s:3:\"off\";}}}s:7:\"default\";s:36:\"2b3edb80-4e29-4ce9-9380-718132800a60\";}s:12:\"et_pb_column\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":9:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"Freelance Column Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"9c2821aa-f112-49a0-bd92-423c1bf5b77b\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"be11a423-1b48-4cdb-ab89-d037068b25f8\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"b1f5171c-6eeb-4dee-972d-2f4897728bba\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"aa81cf7c-a285-4ec6-85e0-66a5153af803\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"a2103633-9b0a-4636-ab6c-c3beb2d72e5b\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Black Border\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";}}s:36:\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"b83c5c03-e41d-49f4-9a5a-dadd3193027a\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"d0cbb859-06b9-439f-8115-bd412d324f57\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}s:9:\"et_pb_row\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":8:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"Freelance Row Preset 1\";s:7:\"created\";i:1756839201000;s:7:\"updated\";i:1756839201000;s:7:\"version\";s:6:\"4.27.3\";s:8:\"settings\";a:0:{}}s:36:\"255f8d16-86e7-4ff7-937c-0c73ee5aa6f0\";O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"Freelance Primary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:18:\"gcid-primary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:43:\"{\"gcid-primary-color\":[\"background_color\"]}\";}}s:36:\"995dc606-35fc-48dd-8049-0a97e6fdd6d6\";O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"Freelance Secondary Color Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:20:\"gcid-secondary-color\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:45:\"{\"gcid-secondary-color\":[\"background_color\"]}\";}}s:36:\"37c9b83a-6d05-4791-9b32-24aaf57da69e\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Black Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#000000\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"5eed47bd-1ab1-47bd-9483-0814320c162b\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance White Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":5:{s:16:\"background_color\";s:7:\"#FFFFFF\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";}}s:36:\"0a1f0260-8b3b-4b1e-aaaf-2be5b75bbd07\";O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"Freelance Light Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\":[\"background_color\"]}\";}}s:36:\"b7979650-614b-4293-b430-4f509785ab9a\";O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Freelance Dark Background\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":6:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:18:\"global_colors_info\";s:66:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color\"]}\";}}s:36:\"7b64b6a8-b512-4372-82ac-81803dc45605\";O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Freelance Dark Overlay\";s:7:\"created\";i:1756839170000;s:7:\"updated\";i:1756839170000;s:7:\"version\";s:6:\"4.27.3\";s:7:\"is_temp\";b:0;s:8:\"settings\";O:8:\"stdClass\":8:{s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";}}}s:7:\"default\";s:8:\"_initial\";}}s:4:\"time\";i:1756839201000;s:5:\"label\";s:20:\"Imported From Layout\";}','off'),
(271,'et_pb_contact_form_5ea0eb169040cc00cdba64d8669213d8','off','auto'),
(281,'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\";}','auto'),
(283,'_et_builder_da_feature_cache','a:2:{i:0;s:38:\"{\"gph\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\"}\";i:1;a:3:{s:8:\"notfound\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:3;s:13:\"et_pb_heading\";i:4;s:10:\"et_pb_text\";i:5;s:12:\"et_pb_button\";}s:29:\"_et_dynamic_cached_attributes\";a:583:{s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:15:\"animation_style\";s:4:\"none\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}}s:8:\"author/1\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:16:{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:10:\"et_pb_blog\";i:5;s:11:\"et_pb_blurb\";i:6;s:12:\"et_pb_button\";i:7;s:14:\"et_pb_comments\";i:8;s:13:\"et_pb_divider\";i:9;s:13:\"et_pb_heading\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:14:\"et_pb_post_nav\";i:13;s:16:\"et_pb_post_title\";i:14;s:25:\"et_pb_social_media_follow\";i:15;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:588:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:14:\"social_network\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:7:\"behance\";i:4;s:8:\"dribbble\";}s:29:\"scroll_vertical_motion_enable\";a:1:{i:0;s:2:\"on\";}s:9:\"font_icon\";a:1:{i:0;s:17:\"&#x5c;||divi||400\";}s:15:\"animation_style\";s:4:\"none\";s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}}s:19:\"taxonomy/category/1\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:16:{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:10:\"et_pb_blog\";i:5;s:11:\"et_pb_blurb\";i:6;s:12:\"et_pb_button\";i:7;s:14:\"et_pb_comments\";i:8;s:13:\"et_pb_divider\";i:9;s:13:\"et_pb_heading\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:14:\"et_pb_post_nav\";i:13;s:16:\"et_pb_post_title\";i:14;s:25:\"et_pb_social_media_follow\";i:15;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:588:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:14:\"social_network\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:7:\"behance\";i:4;s:8:\"dribbble\";}s:29:\"scroll_vertical_motion_enable\";a:1:{i:0;s:2:\"on\";}s:9:\"font_icon\";a:1:{i:0;s:17:\"&#x5c;||divi||400\";}s:15:\"animation_style\";s:4:\"none\";s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}}}}','auto'),
(286,'et_pb_contact_form_5de737810d51b6dc8bb58e19c053577a','on','auto'),
(381,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":5,\"critical\":1}','on'),
(1246,'_site_transient_timeout_php_check_7b9fb72b3bf6b27c046e3a9832dfe8e2','1758128536','off'),
(1247,'_site_transient_php_check_7b9fb72b3bf6b27c046e3a9832dfe8e2','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),
(1250,'_transient_timeout_et_check_mod_pagespeed','1757611243','off'),
(1251,'_transient_et_check_mod_pagespeed','','off'),
(1252,'_transient_timeout__et_builder_gf_feature_cache','1757611244','off'),
(1253,'_transient__et_builder_gf_feature_cache','1','off'),
(1260,'_transient_timeout_et_core_path','1757615954','off'),
(1261,'_transient_et_core_path','/home/wsweb680/public_html/wp-content/themes/Divi/core','off'),
(1266,'_site_transient_timeout_theme_roots','1757532584','off'),
(1267,'_site_transient_theme_roots','a:4:{s:4:\"Divi\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";}','off'),
(1276,'_site_transient_timeout_wp_theme_files_patterns-6977b5305e1df6cf5fc37b2cac0afee1','1757541022','off'),
(1277,'_site_transient_wp_theme_files_patterns-6977b5305e1df6cf5fc37b2cac0afee1','a:2:{s:7:\"version\";s:6:\"4.27.4\";s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `ePgN5dhl_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ePgN5dhl_postmeta`
--

DROP TABLE IF EXISTS `ePgN5dhl_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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=361 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_postmeta`
--

LOCK TABLES `ePgN5dhl_postmeta` WRITE;
/*!40000 ALTER TABLE `ePgN5dhl_postmeta` DISABLE KEYS */;
INSERT INTO `ePgN5dhl_postmeta` VALUES
(1,2,'_wp_page_template','default'),
(2,3,'_wp_page_template','default'),
(9,6,'_et_pb_use_builder','on'),
(10,6,'_et_pb_page_layout','et_full_width_page'),
(11,6,'_et_pb_built_for_post_type','page'),
(13,7,'_menu_item_type','post_type'),
(14,7,'_menu_item_menu_item_parent','0'),
(15,7,'_menu_item_object_id','6'),
(16,7,'_menu_item_object','page'),
(17,7,'_menu_item_target',''),
(18,7,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(19,7,'_menu_item_xfn',''),
(20,7,'_menu_item_url',''),
(21,8,'_et_pb_use_builder','on'),
(22,8,'_et_pb_page_layout','et_full_width_page'),
(23,8,'_et_pb_built_for_post_type','page'),
(25,9,'_menu_item_type','post_type'),
(26,9,'_menu_item_menu_item_parent','0'),
(27,9,'_menu_item_object_id','8'),
(28,9,'_menu_item_object','page'),
(29,9,'_menu_item_target',''),
(30,9,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(31,9,'_menu_item_xfn',''),
(32,9,'_menu_item_url',''),
(33,10,'_et_pb_use_builder','on'),
(34,10,'_et_pb_page_layout','et_full_width_page'),
(35,10,'_et_pb_built_for_post_type','page'),
(37,11,'_menu_item_type','post_type'),
(38,11,'_menu_item_menu_item_parent','0'),
(39,11,'_menu_item_object_id','10'),
(40,11,'_menu_item_object','page'),
(41,11,'_menu_item_target',''),
(42,11,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(43,11,'_menu_item_xfn',''),
(44,11,'_menu_item_url',''),
(45,12,'_et_pb_use_builder','on'),
(46,12,'_et_pb_page_layout','et_full_width_page'),
(47,12,'_et_pb_built_for_post_type','page'),
(49,13,'_menu_item_type','post_type'),
(50,13,'_menu_item_menu_item_parent','0'),
(51,13,'_menu_item_object_id','12'),
(52,13,'_menu_item_object','page'),
(53,13,'_menu_item_target',''),
(54,13,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(55,13,'_menu_item_xfn',''),
(56,13,'_menu_item_url',''),
(57,14,'_wp_attached_file','2025/09/freelancer-09b.jpg'),
(58,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:1300;s:4:\"file\";s:26:\"2025/09/freelancer-09b.jpg\";s:8:\"filesize\";i:104600;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"freelancer-09b-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14116;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"freelancer-09b-740x1024.jpg\";s:5:\"width\";i:740;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93311;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"freelancer-09b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6408;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"freelancer-09b-768x1062.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1062;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98702;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:26:\"freelancer-09b-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17048;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:26:\"freelancer-09b-940x675.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61690;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:26:\"freelancer-09b-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19059;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:26:\"freelancer-09b-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28932;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:26:\"freelancer-09b-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33741;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:26:\"freelancer-09b-480x664.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(59,15,'_wp_attached_file','2025/09/wireframe.png'),
(60,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:428;s:4:\"file\";s:21:\"2025/09/wireframe.png\";s:8:\"filesize\";i:4644;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"wireframe-300x183.png\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3978;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"wireframe-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1869;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:21:\"wireframe-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5541;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:21:\"wireframe-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6079;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:21:\"wireframe-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9014;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:21:\"wireframe-400x428.png\";s:5:\"width\";i:400;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4293;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:21:\"wireframe-480x293.png\";s:5:\"width\";i:480;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7973;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(61,16,'_wp_attached_file','2025/09/freelancer-07b.jpg'),
(62,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:1120;s:4:\"file\";s:26:\"2025/09/freelancer-07b.jpg\";s:8:\"filesize\";i:100042;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"freelancer-07b-220x300.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7243;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"freelancer-07b-750x1024.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67355;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"freelancer-07b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3080;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"freelancer-07b-768x1049.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1049;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70733;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:26:\"freelancer-07b-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9588;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:26:\"freelancer-07b-820x675.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47034;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:26:\"freelancer-07b-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10416;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:26:\"freelancer-07b-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16610;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:26:\"freelancer-07b-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19715;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:26:\"freelancer-07b-480x656.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29595;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(63,17,'_wp_attached_file','2025/09/freelancer-01.jpg'),
(64,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2025/09/freelancer-01.jpg\";s:8:\"filesize\";i:62360;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"freelancer-01-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13247;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"freelancer-01-745x1024.jpg\";s:5:\"width\";i:745;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"freelancer-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:5666;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"freelancer-01-768x1056.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80627;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:16083;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"freelancer-01-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61293;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:18374;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:26471;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"freelancer-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:31221;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"freelancer-01-480x660.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42399;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(65,18,'_wp_attached_file','2025/09/freelancer-02.jpg'),
(66,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2025/09/freelancer-02.jpg\";s:8:\"filesize\";i:50258;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"freelancer-02-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6743;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"freelancer-02-745x1024.jpg\";s:5:\"width\";i:745;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42343;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"freelancer-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:3443;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"freelancer-02-768x1056.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44006;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:7674;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"freelancer-02-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30101;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:8573;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:12555;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"freelancer-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:15111;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"freelancer-02-480x660.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20732;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(67,19,'_wp_attached_file','2025/09/freelancer-09.jpg'),
(68,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:1300;s:4:\"file\";s:25:\"2025/09/freelancer-09.jpg\";s:8:\"filesize\";i:100779;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"freelancer-09-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12066;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"freelancer-09-740x1024.jpg\";s:5:\"width\";i:740;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92316;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"freelancer-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:5572;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"freelancer-09-768x1062.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1062;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97999;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:14844;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"freelancer-09-940x675.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71756;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:16707;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"freelancer-09-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26757;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"freelancer-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:29356;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"freelancer-09-480x664.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,20,'_wp_attached_file','2025/09/freelancer-03.jpg'),
(70,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:802;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2025/09/freelancer-03.jpg\";s:8:\"filesize\";i:52902;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"freelancer-03-219x300.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10590;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"freelancer-03-747x1024.jpg\";s:5:\"width\";i:747;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59411;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"freelancer-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:5182;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"freelancer-03-768x1053.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1053;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62066;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:13625;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"freelancer-03-802x675.jpg\";s:5:\"width\";i:802;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48375;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:14905;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:21499;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"freelancer-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:23507;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"freelancer-03-480x658.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31941;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,21,'_wp_attached_file','2025/09/logo_03-dark.png'),
(72,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2025/09/logo_03-dark.png\";s:8:\"filesize\";i:1125;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"logo_03-dark-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2304;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,22,'_wp_attached_file','2025/09/logo_08-dark.png'),
(74,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2025/09/logo_08-dark.png\";s:8:\"filesize\";i:977;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"logo_08-dark-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1858;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,23,'_wp_attached_file','2025/09/logo_05-dark.png'),
(76,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2025/09/logo_05-dark.png\";s:8:\"filesize\";i:1010;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"logo_05-dark-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1881;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,24,'_wp_attached_file','2025/09/logo_02-dark.png'),
(78,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2025/09/logo_02-dark.png\";s:8:\"filesize\";i:1564;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"logo_02-dark-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3371;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,26,'_wp_attached_file','2025/09/freelancer-10.jpg'),
(80,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:915;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2025/09/freelancer-10.jpg\";s:8:\"filesize\";i:40838;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"freelancer-10-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"freelancer-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:5179;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"freelancer-10-768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42227;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:15620;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:17209;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:25946;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"freelancer-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:23911;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"freelancer-10-480x315.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21156;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(81,27,'_wp_attached_file','2025/09/freelancer-05.jpg'),
(82,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:690;s:4:\"file\";s:25:\"2025/09/freelancer-05.jpg\";s:8:\"filesize\";i:39422;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"freelancer-05-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6521;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"freelancer-05-1024x552.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:552;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"freelancer-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:4246;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"freelancer-05-768x414.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23304;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:10646;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:26:\"freelancer-05-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44829;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:11931;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:17396;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:26:\"freelancer-05-1080x582.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:582;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38786;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"freelancer-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:18757;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:25:\"freelancer-05-980x528.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33357;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"freelancer-05-480x259.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12068;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(83,28,'_wp_attached_file','2025/09/freelancer-21b.jpg'),
(84,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:810;s:4:\"file\";s:26:\"2025/09/freelancer-21b.jpg\";s:8:\"filesize\";i:52252;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-300x259.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5732;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-768x662.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54681;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16270;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-940x675.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65045;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18378;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27549;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26753;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:26:\"freelancer-21b-480x414.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28660;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,29,'_wp_attached_file','2025/09/freelancer-14.jpg'),
(86,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:915;s:6:\"height\";i:765;s:4:\"file\";s:25:\"2025/09/freelancer-14.jpg\";s:8:\"filesize\";i:55719;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"freelancer-14-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14993;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"freelancer-14-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:25:\"freelancer-14-768x642.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:642;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61144;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"freelancer-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18477;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:25:\"freelancer-14-915x675.jpg\";s:5:\"width\";i:915;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78872;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"freelancer-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20133;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"freelancer-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30992;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"freelancer-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25013;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"freelancer-14-480x401.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30568;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,33,'_et_pb_use_builder','on'),
(88,33,'_et_pb_show_page_creation','off'),
(89,33,'_et_pb_built_for_post_type','page'),
(90,33,'_et_pb_enable_shortcode_tracking',''),
(91,33,'_et_pb_custom_css',''),
(92,33,'_et_pb_gutter_width','3'),
(93,33,'_et_pb_first_image',''),
(94,33,'_et_pb_truncate_post',''),
(95,33,'_et_pb_truncate_post_date',''),
(96,33,'_et_builder_version','VB|Divi|4.27.4'),
(97,34,'_wp_attached_file','2025/09/freelancer-04.jpg'),
(98,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2160;s:6:\"height\";i:1335;s:4:\"file\";s:25:\"2025/09/freelancer-04.jpg\";s:8:\"filesize\";i:126820;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"freelancer-04-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7374;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"freelancer-04-1024x633.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57225;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"freelancer-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:3352;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"freelancer-04-768x475.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34781;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"freelancer-04-1536x949.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:949;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112947;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"freelancer-04-2048x1266.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180046;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:11611;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:26:\"freelancer-04-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63481;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:12512;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:25:\"freelancer-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:19638;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:26:\"freelancer-04-1080x668.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63619;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:25:\"freelancer-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:19267;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:26:\"freelancer-04-1280x791.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83218;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:25:\"freelancer-04-980x606.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53116;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:25:\"freelancer-04-480x297.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15792;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(99,35,'_et_pb_use_builder','on'),
(100,35,'_et_pb_show_page_creation','off'),
(101,35,'_et_pb_built_for_post_type','page'),
(102,35,'_et_pb_enable_shortcode_tracking',''),
(103,35,'_et_pb_custom_css',''),
(104,35,'_et_pb_gutter_width','3'),
(105,35,'_et_pb_first_image',''),
(106,35,'_et_pb_truncate_post',''),
(107,35,'_et_pb_truncate_post_date',''),
(108,35,'_et_builder_version','VB|Divi|4.27.4'),
(109,36,'_et_pb_use_builder','on'),
(110,36,'_et_pb_show_page_creation','off'),
(111,36,'_et_pb_built_for_post_type','page'),
(112,36,'_et_pb_enable_shortcode_tracking',''),
(113,36,'_et_pb_custom_css',''),
(114,36,'_et_pb_gutter_width','3'),
(115,36,'_et_pb_first_image',''),
(116,36,'_et_pb_truncate_post',''),
(117,36,'_et_pb_truncate_post_date',''),
(118,36,'_et_builder_version','VB|Divi|4.27.3'),
(119,37,'_et_pb_use_builder','on'),
(120,37,'_et_pb_show_page_creation','off'),
(121,37,'_et_pb_built_for_post_type','page'),
(122,37,'_et_pb_enable_shortcode_tracking',''),
(123,37,'_et_pb_custom_css',''),
(124,37,'_et_pb_gutter_width','3'),
(125,37,'_et_pb_first_image',''),
(126,37,'_et_pb_truncate_post',''),
(127,37,'_et_pb_truncate_post_date',''),
(128,37,'_et_builder_version','VB|Divi|4.27.3'),
(129,38,'_et_pb_use_builder','on'),
(130,38,'_et_pb_show_page_creation','off'),
(131,38,'_et_pb_built_for_post_type','page'),
(132,38,'_et_pb_enable_shortcode_tracking',''),
(133,38,'_et_pb_custom_css',''),
(134,38,'_et_pb_gutter_width','3'),
(135,38,'_et_pb_first_image',''),
(136,38,'_et_pb_truncate_post',''),
(137,38,'_et_pb_truncate_post_date',''),
(138,38,'_et_builder_version','VB|Divi|4.27.3'),
(139,39,'_et_pb_use_builder','on'),
(140,39,'_et_pb_show_page_creation','off'),
(141,39,'_et_pb_built_for_post_type','page'),
(142,39,'_et_pb_enable_shortcode_tracking',''),
(143,39,'_et_pb_custom_css',''),
(144,39,'_et_pb_gutter_width','3'),
(145,39,'_et_pb_first_image',''),
(146,39,'_et_pb_truncate_post',''),
(147,39,'_et_pb_truncate_post_date',''),
(148,39,'_et_builder_version','VB|Divi|4.27.3'),
(149,40,'_et_pb_use_builder','on'),
(150,40,'_et_pb_show_page_creation','off'),
(151,40,'_et_pb_built_for_post_type','page'),
(152,40,'_et_pb_enable_shortcode_tracking',''),
(153,40,'_et_pb_custom_css',''),
(154,40,'_et_pb_gutter_width','3'),
(155,40,'_et_pb_first_image',''),
(156,40,'_et_pb_truncate_post',''),
(157,40,'_et_pb_truncate_post_date',''),
(158,40,'_et_builder_version','VB|Divi|4.27.3'),
(159,41,'_et_pb_use_builder','on'),
(160,41,'_et_pb_show_page_creation','off'),
(161,41,'_et_pb_built_for_post_type','page'),
(162,41,'_et_pb_enable_shortcode_tracking',''),
(163,41,'_et_pb_custom_css',''),
(164,41,'_et_pb_gutter_width','3'),
(165,41,'_et_pb_first_image',''),
(166,41,'_et_pb_truncate_post',''),
(167,41,'_et_pb_truncate_post_date',''),
(168,41,'_et_builder_version','VB|Divi|4.27.3'),
(169,42,'_et_pb_use_builder','on'),
(170,42,'_et_pb_show_page_creation','off'),
(171,42,'_et_pb_built_for_post_type','page'),
(172,42,'_et_pb_enable_shortcode_tracking',''),
(173,42,'_et_pb_custom_css',''),
(174,42,'_et_pb_gutter_width','3'),
(175,42,'_et_pb_first_image',''),
(176,42,'_et_pb_truncate_post',''),
(177,42,'_et_pb_truncate_post_date',''),
(178,42,'_et_builder_version','VB|Divi|4.27.3'),
(179,43,'_et_pb_use_builder','on'),
(180,43,'_et_pb_show_page_creation','off'),
(181,43,'_et_pb_built_for_post_type','page'),
(182,43,'_et_pb_enable_shortcode_tracking',''),
(183,43,'_et_pb_custom_css',''),
(184,43,'_et_pb_gutter_width','3'),
(185,43,'_et_pb_first_image',''),
(186,43,'_et_pb_truncate_post',''),
(187,43,'_et_pb_truncate_post_date',''),
(188,43,'_et_builder_version','VB|Divi|4.27.3'),
(190,45,'_et_autogenerated_title','0'),
(191,45,'_et_default','1'),
(192,45,'_et_enabled','1'),
(193,45,'_et_header_layout_id','33'),
(194,45,'_et_header_layout_enabled','1'),
(195,45,'_et_body_layout_id','0'),
(196,45,'_et_body_layout_enabled','1'),
(197,45,'_et_footer_layout_id','35'),
(198,45,'_et_footer_layout_enabled','1'),
(200,46,'_et_autogenerated_title','1'),
(201,46,'_et_default','0'),
(202,46,'_et_enabled','1'),
(203,46,'_et_header_layout_id','33'),
(204,46,'_et_header_layout_enabled','1'),
(205,46,'_et_body_layout_id','36'),
(206,46,'_et_body_layout_enabled','1'),
(207,46,'_et_footer_layout_id','35'),
(208,46,'_et_footer_layout_enabled','1'),
(209,46,'_et_use_on','singular:post_type:post:all'),
(211,47,'_et_autogenerated_title','1'),
(212,47,'_et_default','0'),
(213,47,'_et_enabled','1'),
(214,47,'_et_header_layout_id','33'),
(215,47,'_et_header_layout_enabled','1'),
(216,47,'_et_body_layout_id','37'),
(217,47,'_et_body_layout_enabled','1'),
(218,47,'_et_footer_layout_id','35'),
(219,47,'_et_footer_layout_enabled','1'),
(220,47,'_et_use_on','archive:taxonomy:category:all'),
(222,48,'_et_autogenerated_title','1'),
(223,48,'_et_default','0'),
(224,48,'_et_enabled','1'),
(225,48,'_et_header_layout_id','33'),
(226,48,'_et_header_layout_enabled','1'),
(227,48,'_et_body_layout_id','38'),
(228,48,'_et_body_layout_enabled','1'),
(229,48,'_et_footer_layout_id','35'),
(230,48,'_et_footer_layout_enabled','1'),
(231,48,'_et_use_on','archive:user:all'),
(233,49,'_et_autogenerated_title','1'),
(234,49,'_et_default','0'),
(235,49,'_et_enabled','1'),
(236,49,'_et_header_layout_id','33'),
(237,49,'_et_header_layout_enabled','1'),
(238,49,'_et_body_layout_id','39'),
(239,49,'_et_body_layout_enabled','1'),
(240,49,'_et_footer_layout_id','35'),
(241,49,'_et_footer_layout_enabled','1'),
(243,50,'_et_autogenerated_title','1'),
(244,50,'_et_default','0'),
(245,50,'_et_enabled','1'),
(246,50,'_et_header_layout_id','33'),
(247,50,'_et_header_layout_enabled','1'),
(248,50,'_et_body_layout_id','40'),
(249,50,'_et_body_layout_enabled','1'),
(250,50,'_et_footer_layout_id','35'),
(251,50,'_et_footer_layout_enabled','1'),
(253,51,'_et_autogenerated_title','1'),
(254,51,'_et_default','0'),
(255,51,'_et_enabled','1'),
(256,51,'_et_header_layout_id','33'),
(257,51,'_et_header_layout_enabled','1'),
(258,51,'_et_body_layout_id','41'),
(259,51,'_et_body_layout_enabled','1'),
(260,51,'_et_footer_layout_id','35'),
(261,51,'_et_footer_layout_enabled','1'),
(263,52,'_et_autogenerated_title','1'),
(264,52,'_et_default','0'),
(265,52,'_et_enabled','1'),
(266,52,'_et_header_layout_id','33'),
(267,52,'_et_header_layout_enabled','1'),
(268,52,'_et_body_layout_id','42'),
(269,52,'_et_body_layout_enabled','1'),
(270,52,'_et_footer_layout_id','35'),
(271,52,'_et_footer_layout_enabled','1'),
(272,52,'_et_use_on','search'),
(274,53,'_et_autogenerated_title','1'),
(275,53,'_et_default','0'),
(276,53,'_et_enabled','1'),
(277,53,'_et_header_layout_id','33'),
(278,53,'_et_header_layout_enabled','0'),
(279,53,'_et_body_layout_id','43'),
(280,53,'_et_body_layout_enabled','1'),
(281,53,'_et_footer_layout_id','35'),
(282,53,'_et_footer_layout_enabled','0'),
(283,53,'_et_use_on','404'),
(284,44,'_et_template','45'),
(285,44,'_et_template','46'),
(286,44,'_et_template','47'),
(287,44,'_et_template','48'),
(288,44,'_et_template','49'),
(289,44,'_et_template','50'),
(290,44,'_et_template','51'),
(291,44,'_et_template','52'),
(292,44,'_et_template','53'),
(297,1,'_et_builder_dynamic_assets_loading_attr_threshold','2'),
(307,10,'_et_builder_dynamic_assets_loading_attr_threshold','5'),
(311,56,'_wp_attached_file','2025/09/BC3Co.png'),
(312,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:17:\"2025/09/BC3Co.png\";s:8:\"filesize\";i:253435;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"BC3Co-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91618;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"BC3Co-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23061;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:17:\"BC3Co-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126388;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:17:\"BC3Co-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135580;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:17:\"BC3Co-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220908;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:17:\"BC3Co-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242181;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:17:\"BC3Co-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:235602;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(313,6,'_et_dynamic_cached_shortcodes','a:13:{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:11:\"et_pb_blurb\";i:5;s:12:\"et_pb_button\";i:6;s:13:\"et_pb_divider\";i:7;s:13:\"et_pb_heading\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:17:\"et_pb_testimonial\";i:12;s:10:\"et_pb_text\";}'),
(314,6,'_et_dynamic_cached_attributes','a:588:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:14:\"social_network\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:7:\"behance\";i:4;s:8:\"dribbble\";}s:29:\"scroll_vertical_motion_enable\";a:1:{i:0;s:2:\"on\";}s:9:\"font_icon\";a:3:{i:0;s:17:\"&#x4e;||divi||400\";i:1;s:17:\"&#x26;||divi||400\";i:2;s:17:\"&#x5c;||divi||400\";}s:15:\"animation_style\";s:4:\"none\";s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}'),
(315,6,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:15:\"et-gf-gothic-a1\";s:49:\"Gothic+A1:100,200,300,regular,500,600,700,800,900\";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\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"enable_all_character_sets\":\"false\"}\";}'),
(316,6,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"tb\":{\"33\":\"2025-09-02 23:18:45\",\"35\":\"2025-09-02 23:18:45\"},\"wpe\":[]}\";i:1;a:129:{s:46:\"et_pb_section_0a203ef9f641560aacd40311c6cce22e\";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_a762a109244364acdb385f86718439a8\";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_cbf0715e7afde4f02718a4ddf5b58ec0\";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_3c5170285767a78fd01ae6c0826c2e4e\";a:8:{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:3:\"bor\";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_1b2ac151a83a783ebdb43f55d418d3f9\";a:4:{s:4:\"tesh\";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_dbd6459f0538488059845963255fb1f4\";a:4:{s:4:\"tesh\";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_2a9f82791b5e2e87d94a14083be39ef2\";a:4:{s:4:\"tesh\";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_9fd6981c33456280f087bfecc39ca601\";a:4:{s:4:\"tesh\";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_cf6b3ff858bd9c6b2e2ac4571ca3b0d6\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_bb7546d3a590704698b4a160e325b118\";a:7:{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:46:\"et_pb_section_6c425294c527b165657a947a95895001\";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_31f04f62350e78f988e27800a7c67329\";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_9960679b482f117a36fb4ea3c20f8e99\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_695f4e12fa82aa0c2d0d6a2c399a9e4d\";a:7:{s:4:\"glde\";a:4:{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_71dbbe8bdfe36c25831fad156f553c5e\";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_button_f0694040909edcd26098722c31917e62\";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_bcf423467924322facf448d97468a566\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_73c8dbc499747a0cffe50da699090c91\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ef6dd69271d28b0400b85656eaa95325\";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_heading_430e6f02171ad5a35af7fc0bb101f775\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_8be2777fde89b1cfe8665ef6f44d6fee\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_6e8961ed191bcfeb2933fb25b0489757\";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_9f0e6faac69480402247675926887c23\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_122f6bc351878abbaf7a9b92c5c87f58\";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_9fd619b92d7521ae447111abcb713a79\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_879246d71b708448abb8530a646dda0b\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_61cac00e8806c5be14bb95a9916cedca\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_bffabe6fd65fb530364e30fe85eff468\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_d58485866d803d8569ec7e0f40c1c712\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_750fc1a5f45c80d488cd9aad995b00c4\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_815a438e35f348a16d5b4d7151df7459\";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_879a0f7a33d059d50729b7000e6dcf1a\";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_10a4fdb759953ae44575c09356aeb1c1\";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_61ecad9d9bea8a7a929ab596739d1477\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_9ad4799546f5a7fc7d0dd9b93d3c9a27\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_3b5b453cd2ab0b90673915576e936a5c\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_6c389ad015478dc30bea49b2a3cc3893\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_339361082a787cdc1263daf943ef58b1\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d10645a2bf9be0c471b8ffa1194eced7\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_bddb8922272a2c4c58273b4d033bcb85\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_5a7c1dcc27cb899733b7b082a5ca317c\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_be14a049d79ee9b4be7de2ca5b4a7a04\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_608936e4499ed6527bcb56d46a3d5969\";a:8:{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:3:\"bor\";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_874b40aa1601d17e7fa98d0261d3b01c\";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_heading_998af9cad72379a2a67566ae5d6b91a7\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_095134bf69a2b204337120994cfb1c82\";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_button_8803f73461e04c5025852190714dd7e9\";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_heading_493d34dd0ecb622eac1cbf3971f366bc\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_67e06db28dc49536eafa88fda704d969\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_0bee6d0a08afdbc3b474a80b62de242c\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_73ba3dc7e7ac387825eeaaf47e3825d3\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_5a058e29a4b4d05f5808995eae987d2d\";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_4ea01a00303c01a05e10a0704097360d\";a:6:{s:3:\"bor\";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:46:\"et_pb_heading_48cab773511e8e31d38a84d442cb9165\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f46e80428aa7ca1001122f38f6c9861f\";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_8ac0e254882345bad48ece39028f6a0b\";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_cb89c9e72875aa76a5714d40ae618298\";a:6:{s:3:\"bor\";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:46:\"et_pb_heading_4f65e6f3b242f553727db08a30c4edd0\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a0118b97edabee36ad2b2d34c2850292\";a:8:{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:3:\"bor\";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_3b4b8b8e0b48fbfb1e2d939163b93f8a\";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:42:\"et_pb_row_61b1b38aff5314c1453fd3e82429e983\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_ecdad58c97988e2f6b520bbb29c05c75\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c739b75d762dfd66e9b11c84236a879d\";a:8:{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:3:\"bor\";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_image_7cd2c322253e8eb147862fbf5453584b\";a:4:{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_4d9d4de9fc2c0fd43a5bdbeb574494e6\";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_heading_e35c2e6d1095743719ae118ba3d99b04\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_c2b6b9b0e1b53a9fbb902d79e293d1a2\";a:6:{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:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_10b885eef9a684baef3a27db27b5a2f7\";a:6:{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:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_f13895041b453c811d6264cc379eef7c\";a:6:{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:\"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_blurb_d130dce326e2cc17a49a71bfc4bd44af\";a:10:{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:3:\"bor\";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_8902a17b2fecd59ff079cbca47ac6964\";a:10:{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:3:\"bor\";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_165bae5888efa3b7fd22f93ef9c9bbb5\";a:10:{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:3:\"bor\";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_dbd887cf7116963ce6e79ad322543477\";a:10:{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:3:\"bor\";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_448835a3b5d22e0b47f62577a7d52114\";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_ed22bbdcd1dde759bc90754866943579\";a:6:{s:3:\"bor\";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:46:\"et_pb_heading_bc16d8c3222cb48d6c8f47395fbd0f9e\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_66cdd424a813dce60ba7eff50cd5107b\";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_6d6552c3d94e24996dd1e5852e17e0c7\";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_542443d161d3dd687e2c52a2f8eaa597\";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:46:\"et_pb_divider_72ca4348665c4ab93d3bfafa5292f852\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_cd160e25b25e5141639e0e79b6ceae39\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_9a1d70ba1ddd4f890365e74ea930b0dc\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_6f8231c41f8d55c6e06eae0b822712ed\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_aa830b0c4bdba5b3b163e5b24d953161\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_2752250db2082ec192fb5fb33be9266f\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_1c6fbf6785929e3b15cdf13d98c273b8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_40f9b9a25bfebb72d955c0bd927903a8\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_501b62f89b409882d3ac287b4918da6e\";a:10:{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:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_486abfcf836d87f1a1ecfb4f19cb48f5\";a:10:{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:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_ebaf4ce835827ad269f92c9cb4fa4f6b\";a:10:{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:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_9f14137623a4074f1bd85c8268c85286\";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_a8fdf32599e2b323ce8bd0443b565fac\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_6231045135bd4cc3186029d41256e6ab\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_a7ccb44e44463b994e9649935493f80b\";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_9d3696948a0afe65123250a6d19abc6a\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_cb4657e1f123fd9918503dedec598efa\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;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:46:\"et_pb_heading_a98a605bb0e88855c9f67c83f5b1c72b\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;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_e0e3c5b5a95494712f3aae9d5ebbaa17\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_4fc6d8606721735c8571ae1734ada98e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;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:46:\"et_pb_heading_64539bf36a95a66a2e6b8d6c514ad538\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;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:46:\"et_pb_section_b2a6d19b2aa87c078eb3c5dbc3c540c3\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_2d77daff989d261981f34d9b614f1941\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_141d0fa8d954ea278f9b2354d9b16a61\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_5069868edc93a3f5eb42c32787a1ae12\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:50:\"et_pb_testimonial_9541cad4badaf85aa418d92b67568789\";a:8:{s:4:\"glde\";a:10:{s:27:\"quote_icon_background_color\";s:7:\"#f5f5f5\";s:14:\"portrait_width\";s:2:\"90\";s:15:\"portrait_height\";s:2:\"90\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.5em\";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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:50:\"et_pb_testimonial_a17200940d8cb8732b0f2551d3fb7249\";a:8:{s:4:\"glde\";a:10:{s:27:\"quote_icon_background_color\";s:7:\"#f5f5f5\";s:14:\"portrait_width\";s:2:\"90\";s:15:\"portrait_height\";s:2:\"90\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.5em\";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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:50:\"et_pb_testimonial_9716edb4a92122ae7609c2d68255f7cd\";a:8:{s:4:\"glde\";a:10:{s:27:\"quote_icon_background_color\";s:7:\"#f5f5f5\";s:14:\"portrait_width\";s:2:\"90\";s:15:\"portrait_height\";s:2:\"90\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.5em\";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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_e8e09bdea3ff432ad5b4c60ae351fcf6\";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:46:\"et_pb_section_982b762be924562db4c5768da7db0bf1\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dd9521220aaf3cfb517b2953d2468041\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_074ceb24a233ec6d9b5187091e4cdf23\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1ec482c4eecb9ea26896f031ff1f844b\";a:10:{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:3:\"bor\";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:46:\"et_pb_heading_fb566a34db583e50b13657580a974ed4\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c34900c67688e1da7a86b0937053f37f\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c9c56ba8d87da9aca159aee9cd8afb39\";a:10:{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:3:\"bor\";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_18da637b6c7a5f8115f79e912bd5d64e\";a:10:{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:3:\"bor\";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_a31b8dcf9f8c533db453b2da2b54e6ce\";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_e6268de2340ceacdf3e31beac295e9f0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_1a0595a2191d7123cf5dc054e41b9ce0\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_e479004cf6f3c186b115160d57d62e9b\";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:42:\"et_pb_row_6fcac9e2773c713e7a6b2edaccad9258\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_27499c8c3a3dc445acecb805031d4084\";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_592c5ac464be5c0ff724b7128722b34f\";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_button_6d6accc5a303021ddbb83837f42250b3\";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_59ebe93dbea0924bfe163847d839ecac\";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:66:\"et_pb_social_media_follow_network_08f08657acbba08061ea21dd5293f6a8\";a:4:{s:4:\"tesh\";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_7f10e889995a4c1f90871cbd1325c265\";a:4:{s:4:\"tesh\";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_9e40626fc173323944fdad726a867ce9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_4a57588425a885f09e98ebb6d8093f54\";a:7:{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;}}}'),
(321,12,'_et_pb_ab_subjects',''),
(322,12,'_et_pb_enable_shortcode_tracking',''),
(323,12,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"12\" /]'),
(324,12,'_et_pb_custom_css',''),
(325,12,'_et_pb_gutter_width','3'),
(326,12,'_thumbnail_id','0'),
(327,12,'_global_colors_info','{}'),
(328,12,'_et_pb_first_image',''),
(329,12,'_et_pb_truncate_post',''),
(330,12,'_et_pb_truncate_post_date',''),
(331,12,'_et_builder_version','VB|Divi|4.27.4'),
(332,12,'_et_pb_show_page_creation','off'),
(333,33,'_et_pb_ab_subjects',''),
(334,33,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"33\" /]'),
(335,33,'_thumbnail_id','0'),
(336,33,'_global_colors_info','{}'),
(337,35,'_et_pb_ab_subjects',''),
(338,35,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"35\" /]'),
(339,35,'_thumbnail_id','0'),
(340,35,'_global_colors_info','{}'),
(341,12,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:19:\"et_pb_contact_field\";i:2;s:13:\"et_pb_section\";i:3;s:9:\"et_pb_row\";i:4;s:12:\"et_pb_column\";i:5;s:11:\"et_pb_blurb\";i:6;s:12:\"et_pb_button\";i:7;s:18:\"et_pb_contact_form\";i:8;s:13:\"et_pb_divider\";i:9;s:13:\"et_pb_heading\";i:10;s:10:\"et_pb_menu\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:10:\"et_pb_text\";}'),
(342,12,'_et_dynamic_cached_attributes','a:588:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:14:\"social_network\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:7:\"behance\";i:4;s:8:\"dribbble\";}s:29:\"scroll_vertical_motion_enable\";a:1:{i:0;s:2:\"on\";}s:9:\"font_icon\";a:1:{i:0;s:17:\"&#x5c;||divi||400\";}s:15:\"animation_style\";s:4:\"none\";s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}'),
(343,12,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:15:\"et-gf-gothic-a1\";s:49:\"Gothic+A1:100,200,300,regular,500,600,700,800,900\";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\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"enable_all_character_sets\":\"false\"}\";}'),
(344,12,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"tb\":{\"33\":\"2025-09-02 23:18:45\",\"35\":\"2025-09-02 23:18:45\"},\"wpe\":[]}\";i:1;a:60:{s:46:\"et_pb_section_0a203ef9f641560aacd40311c6cce22e\";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_a762a109244364acdb385f86718439a8\";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_cbf0715e7afde4f02718a4ddf5b58ec0\";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_3c5170285767a78fd01ae6c0826c2e4e\";a:8:{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:3:\"bor\";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_1b2ac151a83a783ebdb43f55d418d3f9\";a:4:{s:4:\"tesh\";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_dbd6459f0538488059845963255fb1f4\";a:4:{s:4:\"tesh\";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_2a9f82791b5e2e87d94a14083be39ef2\";a:4:{s:4:\"tesh\";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_9fd6981c33456280f087bfecc39ca601\";a:4:{s:4:\"tesh\";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_cf6b3ff858bd9c6b2e2ac4571ca3b0d6\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_bb7546d3a590704698b4a160e325b118\";a:7:{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:46:\"et_pb_section_6c425294c527b165657a947a95895001\";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_31f04f62350e78f988e27800a7c67329\";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_9960679b482f117a36fb4ea3c20f8e99\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_695f4e12fa82aa0c2d0d6a2c399a9e4d\";a:7:{s:4:\"glde\";a:4:{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_71dbbe8bdfe36c25831fad156f553c5e\";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_button_f0694040909edcd26098722c31917e62\";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_bf735aa3c45c6de79756d93b2c8280f4\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_18e63c0f0b538d3d2563ace11a3853b8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_08503a158bf5a7fd8555af649708c6d0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_8ca93385892471999e46e5baa1dba941\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e75cde7d89291bbe5319ee679c7f853c\";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_a305412531bdaa5a0da61ab18fdb4118\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5c50d4857460d30ec7c13d6dc875e105\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_dd2252c241d03c76cf5e4b06c8a857e1\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_364be73f639aa733e31a5a429d031903\";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:46:\"et_pb_heading_e64a68d81f4e0c695d9e79657df0b2b3\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_419e6d5efc2a203ca3a11ea242562843\";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_7bc2bd3eb62e72ed3cb04b664c61fb96\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_535efb4e7d23bd11b207b6598e0f992a\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";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:52:\"et_pb_contact_field_fa0e2e6c81ea18a54be926452bae69b2\";a:6:{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:52:\"et_pb_contact_field_a6208905ad0ec3a61c6fd4642d6485fd\";a:6:{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:52:\"et_pb_contact_field_1e7790146e2c0c57199d352f4c2404a5\";a:6:{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:46:\"et_pb_section_6c75d8f352aaf2773f53aa80fb182726\";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_c7bf638c472ed0d3015c5b27c6b37fe9\";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_e9d3a36068f80178ebf2b7eb79dfe1e3\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_632a3ae3f4c3e2d0131b55262f698a8d\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_7db3f76cc7fc633c26cc3694eb629d82\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_b8b2fca5ea213ecd161aa9e524221d74\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_b9c0fe4dd447342f8972918fed01eef7\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_982b762be924562db4c5768da7db0bf1\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dd9521220aaf3cfb517b2953d2468041\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_074ceb24a233ec6d9b5187091e4cdf23\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1ec482c4eecb9ea26896f031ff1f844b\";a:10:{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:3:\"bor\";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:46:\"et_pb_heading_fb566a34db583e50b13657580a974ed4\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c34900c67688e1da7a86b0937053f37f\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c9c56ba8d87da9aca159aee9cd8afb39\";a:10:{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:3:\"bor\";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_18da637b6c7a5f8115f79e912bd5d64e\";a:10:{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:3:\"bor\";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_a31b8dcf9f8c533db453b2da2b54e6ce\";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_e6268de2340ceacdf3e31beac295e9f0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_1a0595a2191d7123cf5dc054e41b9ce0\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_e479004cf6f3c186b115160d57d62e9b\";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:42:\"et_pb_row_6fcac9e2773c713e7a6b2edaccad9258\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_27499c8c3a3dc445acecb805031d4084\";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_592c5ac464be5c0ff724b7128722b34f\";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_button_6d6accc5a303021ddbb83837f42250b3\";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_59ebe93dbea0924bfe163847d839ecac\";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:66:\"et_pb_social_media_follow_network_08f08657acbba08061ea21dd5293f6a8\";a:4:{s:4:\"tesh\";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_7f10e889995a4c1f90871cbd1325c265\";a:4:{s:4:\"tesh\";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_9e40626fc173323944fdad726a867ce9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_4a57588425a885f09e98ebb6d8093f54\";a:7:{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;}}}'),
(345,8,'_et_dynamic_cached_shortcodes','a:12:{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:11:\"et_pb_blurb\";i:5;s:12:\"et_pb_button\";i:6;s:13:\"et_pb_divider\";i:7;s:13:\"et_pb_heading\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";}'),
(346,8,'_et_dynamic_cached_attributes','a:588:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:14:\"social_network\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:7:\"behance\";i:4;s:8:\"dribbble\";}s:29:\"scroll_vertical_motion_enable\";a:1:{i:0;s:2:\"on\";}s:9:\"font_icon\";a:1:{i:0;s:17:\"&#x5c;||divi||400\";}s:15:\"animation_style\";s:4:\"none\";s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}'),
(347,8,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:15:\"et-gf-gothic-a1\";s:49:\"Gothic+A1:100,200,300,regular,500,600,700,800,900\";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\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"enable_all_character_sets\":\"false\"}\";}'),
(348,8,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"tb\":{\"33\":\"2025-09-02 23:18:45\",\"35\":\"2025-09-02 23:18:45\"},\"wpe\":[]}\";i:1;a:70:{s:46:\"et_pb_section_0a203ef9f641560aacd40311c6cce22e\";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_a762a109244364acdb385f86718439a8\";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_cbf0715e7afde4f02718a4ddf5b58ec0\";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_3c5170285767a78fd01ae6c0826c2e4e\";a:8:{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:3:\"bor\";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_1b2ac151a83a783ebdb43f55d418d3f9\";a:4:{s:4:\"tesh\";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_dbd6459f0538488059845963255fb1f4\";a:4:{s:4:\"tesh\";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_2a9f82791b5e2e87d94a14083be39ef2\";a:4:{s:4:\"tesh\";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_9fd6981c33456280f087bfecc39ca601\";a:4:{s:4:\"tesh\";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_cf6b3ff858bd9c6b2e2ac4571ca3b0d6\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_bb7546d3a590704698b4a160e325b118\";a:7:{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:46:\"et_pb_section_6c425294c527b165657a947a95895001\";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_31f04f62350e78f988e27800a7c67329\";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_9960679b482f117a36fb4ea3c20f8e99\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_695f4e12fa82aa0c2d0d6a2c399a9e4d\";a:7:{s:4:\"glde\";a:4:{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_71dbbe8bdfe36c25831fad156f553c5e\";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_button_f0694040909edcd26098722c31917e62\";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_67113915b0dfdce2fdff73d0225a64ad\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_879246d71b708448abb8530a646dda0b\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_61cac00e8806c5be14bb95a9916cedca\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_6f75df19f4fcffa72c850c3017341e79\";a:5:{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;}s:46:\"et_pb_heading_abd695458345efb0667208e59d67ca87\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_9c9eb21346ad33b985cdc90fac8d9311\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e1d2c837a6c5e74f618f7b1170d0d35c\";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_7d24d1a1a6dd5b31ab0e6a6fbf6c68b6\";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_dcb1174d02f586b2e9b40401038c7e81\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_72ddd2552f070803ada87737952a4ffa\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0780f2c2ad219276de510cfd59e72b3b\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_96fe9500c616fadd31487efcacbcdf67\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_dc7cb94e491fab578b296a53266cd0b4\";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_68d502b29a4ca6c990667f6fd65a4a92\";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_c24fa14d857256ff303bc02c90be70ab\";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_53b09aeecd1001cb9635279a55a88ef1\";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_e8e09bdea3ff432ad5b4c60ae351fcf6\";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_10a4fdb759953ae44575c09356aeb1c1\";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_61ecad9d9bea8a7a929ab596739d1477\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_9ad4799546f5a7fc7d0dd9b93d3c9a27\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_3b5b453cd2ab0b90673915576e936a5c\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_6c389ad015478dc30bea49b2a3cc3893\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_339361082a787cdc1263daf943ef58b1\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_f3f33f815b90b70bb0591ec02abe78de\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_856c3b5fd28f4e517cd9e2e650e3d8a8\";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:46:\"et_pb_heading_3883ee44fc6430a26d09761689b67636\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e0e3c5b5a95494712f3aae9d5ebbaa17\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_9d3696948a0afe65123250a6d19abc6a\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_b98d5fef161ebf360e7fcd4b0ee12c30\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_12be4c1d532e524021557ba86d56b325\";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:44:\"et_pb_blurb_47149ff1b1821464a4b7bb6cf2d967ff\";a:10:{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:3:\"bor\";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_bdd37c09b22c5386c25df8cc2e3b3234\";a:10:{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:3:\"bor\";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_37fb1350e7d857aa2ec60c2a193d6958\";a:10:{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:3:\"bor\";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:46:\"et_pb_section_982b762be924562db4c5768da7db0bf1\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dd9521220aaf3cfb517b2953d2468041\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_074ceb24a233ec6d9b5187091e4cdf23\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1ec482c4eecb9ea26896f031ff1f844b\";a:10:{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:3:\"bor\";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:46:\"et_pb_heading_fb566a34db583e50b13657580a974ed4\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c34900c67688e1da7a86b0937053f37f\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c9c56ba8d87da9aca159aee9cd8afb39\";a:10:{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:3:\"bor\";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_18da637b6c7a5f8115f79e912bd5d64e\";a:10:{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:3:\"bor\";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_a31b8dcf9f8c533db453b2da2b54e6ce\";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_e6268de2340ceacdf3e31beac295e9f0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_1a0595a2191d7123cf5dc054e41b9ce0\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_e479004cf6f3c186b115160d57d62e9b\";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:42:\"et_pb_row_6fcac9e2773c713e7a6b2edaccad9258\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_27499c8c3a3dc445acecb805031d4084\";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_592c5ac464be5c0ff724b7128722b34f\";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_button_6d6accc5a303021ddbb83837f42250b3\";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_59ebe93dbea0924bfe163847d839ecac\";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:66:\"et_pb_social_media_follow_network_08f08657acbba08061ea21dd5293f6a8\";a:4:{s:4:\"tesh\";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_7f10e889995a4c1f90871cbd1325c265\";a:4:{s:4:\"tesh\";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_9e40626fc173323944fdad726a867ce9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_4a57588425a885f09e98ebb6d8093f54\";a:7:{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;}}}'),
(349,10,'_et_dynamic_cached_shortcodes','a:12:{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:11:\"et_pb_blurb\";i:5;s:12:\"et_pb_button\";i:6;s:13:\"et_pb_divider\";i:7;s:13:\"et_pb_heading\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";}'),
(350,10,'_et_dynamic_cached_attributes','a:589:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:14:\"social_network\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:7:\"behance\";i:4;s:8:\"dribbble\";}s:16:\"show_in_lightbox\";a:1:{i:0;s:2:\"on\";}s:29:\"scroll_vertical_motion_enable\";a:1:{i:0;s:2:\"on\";}s:9:\"font_icon\";a:1:{i:0;s:17:\"&#x5c;||divi||400\";}s:15:\"animation_style\";s:4:\"none\";s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}'),
(351,10,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:15:\"et-gf-gothic-a1\";s:49:\"Gothic+A1:100,200,300,regular,500,600,700,800,900\";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\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"enable_all_character_sets\":\"false\"}\";}'),
(352,10,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"tb\":{\"33\":\"2025-09-02 23:18:45\",\"35\":\"2025-09-02 23:18:45\"},\"wpe\":[]}\";i:1;a:68:{s:46:\"et_pb_section_0a203ef9f641560aacd40311c6cce22e\";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_a762a109244364acdb385f86718439a8\";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_cbf0715e7afde4f02718a4ddf5b58ec0\";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_3c5170285767a78fd01ae6c0826c2e4e\";a:8:{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:3:\"bor\";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_1b2ac151a83a783ebdb43f55d418d3f9\";a:4:{s:4:\"tesh\";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_dbd6459f0538488059845963255fb1f4\";a:4:{s:4:\"tesh\";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_2a9f82791b5e2e87d94a14083be39ef2\";a:4:{s:4:\"tesh\";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_9fd6981c33456280f087bfecc39ca601\";a:4:{s:4:\"tesh\";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_cf6b3ff858bd9c6b2e2ac4571ca3b0d6\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_bb7546d3a590704698b4a160e325b118\";a:7:{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:46:\"et_pb_section_6c425294c527b165657a947a95895001\";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_31f04f62350e78f988e27800a7c67329\";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_9960679b482f117a36fb4ea3c20f8e99\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_695f4e12fa82aa0c2d0d6a2c399a9e4d\";a:7:{s:4:\"glde\";a:4:{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_71dbbe8bdfe36c25831fad156f553c5e\";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_button_f0694040909edcd26098722c31917e62\";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_67113915b0dfdce2fdff73d0225a64ad\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_879246d71b708448abb8530a646dda0b\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_61cac00e8806c5be14bb95a9916cedca\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_b0df81af9a1a5e4c7c801c91971abc21\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_c4963dd986bb4992ad0be3ff995a273a\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3d268cebb161ad268d0977d9f6ae3ec5\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fc145ff8887da58c736802adea6f5f71\";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:44:\"et_pb_image_3fd76e60a10152a58464523ac0180370\";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_heading_c096101bb52063275acfadc3d95722cc\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_2926cd290b3c5ba4f97145f3116e3c2d\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_658b6106c583cdb0dcaea69cd91a2ba2\";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:44:\"et_pb_image_ed5a11f713fe2cbd88ae5ce9c36809f2\";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_heading_38ea1406414f180c211c846fe9b44ac9\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_72990dec4c521c62a9610d41ad4126b5\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_56c643e945ae33680c246d2110bea6f4\";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:44:\"et_pb_image_282464ffa8255baaf199014113bfb189\";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_heading_3583a9fc2a024740478dbe7faacbdc62\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_c992fa559af2b3553367e00e92722931\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9bf432dbc6ded553eb4e15fe8246eb17\";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_heading_b1bac34fbda8a5a71f7cc7fbe59b779b\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_9e918ab84a582ebd57b821e87873d589\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c455b8f41da60825dddc412905232406\";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_heading_cd6e417aa7f6951533fc5b75f9d55422\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_0eee1dd0f87dc44cf6d9c96b14b15db2\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_e8e09bdea3ff432ad5b4c60ae351fcf6\";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_10a4fdb759953ae44575c09356aeb1c1\";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_61ecad9d9bea8a7a929ab596739d1477\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_9ad4799546f5a7fc7d0dd9b93d3c9a27\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_3b5b453cd2ab0b90673915576e936a5c\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_6c389ad015478dc30bea49b2a3cc3893\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_339361082a787cdc1263daf943ef58b1\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_982b762be924562db4c5768da7db0bf1\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dd9521220aaf3cfb517b2953d2468041\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_074ceb24a233ec6d9b5187091e4cdf23\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1ec482c4eecb9ea26896f031ff1f844b\";a:10:{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:3:\"bor\";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:46:\"et_pb_heading_fb566a34db583e50b13657580a974ed4\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c34900c67688e1da7a86b0937053f37f\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c9c56ba8d87da9aca159aee9cd8afb39\";a:10:{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:3:\"bor\";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_18da637b6c7a5f8115f79e912bd5d64e\";a:10:{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:3:\"bor\";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_a31b8dcf9f8c533db453b2da2b54e6ce\";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_e6268de2340ceacdf3e31beac295e9f0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_1a0595a2191d7123cf5dc054e41b9ce0\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_e479004cf6f3c186b115160d57d62e9b\";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:42:\"et_pb_row_6fcac9e2773c713e7a6b2edaccad9258\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_27499c8c3a3dc445acecb805031d4084\";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_592c5ac464be5c0ff724b7128722b34f\";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_button_6d6accc5a303021ddbb83837f42250b3\";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_59ebe93dbea0924bfe163847d839ecac\";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:66:\"et_pb_social_media_follow_network_08f08657acbba08061ea21dd5293f6a8\";a:4:{s:4:\"tesh\";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_7f10e889995a4c1f90871cbd1325c265\";a:4:{s:4:\"tesh\";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_9e40626fc173323944fdad726a867ce9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_4a57588425a885f09e98ebb6d8093f54\";a:7:{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;}}}'),
(353,2,'_et_dynamic_cached_shortcodes','a:10:{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:11:\"et_pb_blurb\";i:5;s:12:\"et_pb_button\";i:6;s:13:\"et_pb_heading\";i:7;s:10:\"et_pb_menu\";i:8;s:25:\"et_pb_social_media_follow\";i:9;s:10:\"et_pb_text\";}'),
(354,2,'_et_dynamic_cached_attributes','a:587:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:14:\"social_network\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:7:\"behance\";i:4;s:8:\"dribbble\";}s:9:\"font_icon\";a:1:{i:0;s:17:\"&#x5c;||divi||400\";}s:15:\"animation_style\";s:4:\"none\";s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}'),
(355,2,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:15:\"et-gf-gothic-a1\";s:49:\"Gothic+A1:100,200,300,regular,500,600,700,800,900\";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\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"enable_all_character_sets\":\"false\"}\";}'),
(356,2,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"tb\":{\"33\":\"2025-09-02 23:18:45\",\"35\":\"2025-09-02 23:18:45\"},\"wpe\":[]}\";i:1;a:37:{s:46:\"et_pb_section_0a203ef9f641560aacd40311c6cce22e\";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_a762a109244364acdb385f86718439a8\";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_cbf0715e7afde4f02718a4ddf5b58ec0\";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_3c5170285767a78fd01ae6c0826c2e4e\";a:8:{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:3:\"bor\";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_1b2ac151a83a783ebdb43f55d418d3f9\";a:4:{s:4:\"tesh\";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_dbd6459f0538488059845963255fb1f4\";a:4:{s:4:\"tesh\";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_2a9f82791b5e2e87d94a14083be39ef2\";a:4:{s:4:\"tesh\";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_9fd6981c33456280f087bfecc39ca601\";a:4:{s:4:\"tesh\";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_cf6b3ff858bd9c6b2e2ac4571ca3b0d6\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_bb7546d3a590704698b4a160e325b118\";a:7:{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:46:\"et_pb_section_6c425294c527b165657a947a95895001\";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_31f04f62350e78f988e27800a7c67329\";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_9960679b482f117a36fb4ea3c20f8e99\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_695f4e12fa82aa0c2d0d6a2c399a9e4d\";a:7:{s:4:\"glde\";a:4:{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_71dbbe8bdfe36c25831fad156f553c5e\";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_button_f0694040909edcd26098722c31917e62\";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_982b762be924562db4c5768da7db0bf1\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dd9521220aaf3cfb517b2953d2468041\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_074ceb24a233ec6d9b5187091e4cdf23\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1ec482c4eecb9ea26896f031ff1f844b\";a:10:{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:3:\"bor\";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:46:\"et_pb_heading_fb566a34db583e50b13657580a974ed4\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c34900c67688e1da7a86b0937053f37f\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c9c56ba8d87da9aca159aee9cd8afb39\";a:10:{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:3:\"bor\";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_18da637b6c7a5f8115f79e912bd5d64e\";a:10:{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:3:\"bor\";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_a31b8dcf9f8c533db453b2da2b54e6ce\";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_e6268de2340ceacdf3e31beac295e9f0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_1a0595a2191d7123cf5dc054e41b9ce0\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_e479004cf6f3c186b115160d57d62e9b\";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:42:\"et_pb_row_6fcac9e2773c713e7a6b2edaccad9258\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_27499c8c3a3dc445acecb805031d4084\";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_592c5ac464be5c0ff724b7128722b34f\";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_button_6d6accc5a303021ddbb83837f42250b3\";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_59ebe93dbea0924bfe163847d839ecac\";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:66:\"et_pb_social_media_follow_network_08f08657acbba08061ea21dd5293f6a8\";a:4:{s:4:\"tesh\";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_7f10e889995a4c1f90871cbd1325c265\";a:4:{s:4:\"tesh\";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_9e40626fc173323944fdad726a867ce9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_4a57588425a885f09e98ebb6d8093f54\";a:7:{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;}}}'),
(357,1,'_et_builder_module_features_cache','a:2:{i:0;s:135:\"{\"gph\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"tb\":{\"33\":\"2025-09-02 23:18:45\",\"37\":\"2025-09-02 18:53:14\",\"35\":\"2025-09-02 23:18:45\"},\"wpe\":[]}\";i:1;a:49:{s:46:\"et_pb_section_0a203ef9f641560aacd40311c6cce22e\";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_a762a109244364acdb385f86718439a8\";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_cbf0715e7afde4f02718a4ddf5b58ec0\";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_3c5170285767a78fd01ae6c0826c2e4e\";a:8:{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:3:\"bor\";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_1b2ac151a83a783ebdb43f55d418d3f9\";a:4:{s:4:\"tesh\";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_dbd6459f0538488059845963255fb1f4\";a:4:{s:4:\"tesh\";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_2a9f82791b5e2e87d94a14083be39ef2\";a:4:{s:4:\"tesh\";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_9fd6981c33456280f087bfecc39ca601\";a:4:{s:4:\"tesh\";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_cf6b3ff858bd9c6b2e2ac4571ca3b0d6\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_bb7546d3a590704698b4a160e325b118\";a:7:{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:46:\"et_pb_section_6c425294c527b165657a947a95895001\";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_31f04f62350e78f988e27800a7c67329\";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_9960679b482f117a36fb4ea3c20f8e99\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_695f4e12fa82aa0c2d0d6a2c399a9e4d\";a:7:{s:4:\"glde\";a:4:{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_71dbbe8bdfe36c25831fad156f553c5e\";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_button_f0694040909edcd26098722c31917e62\";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_47a7c0e24d887dd07188fd2dae9d1725\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8c30c112dff088119c77032f692492a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a6f99bf3ac605a1c575faa01749eb92c\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_684b3743682ec088b7329e2ee3481d2d\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_blog_0c184bd39a5956156c9e611e1b68b56a\";a:8:{s:4:\"glde\";a:14:{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:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:5:\"1.7em\";s:19:\"read_more_font_size\";s:4:\"14px\";s:21:\"read_more_line_height\";s:5:\"1.7em\";s:20:\"pagination_font_size\";s:2:\"14\";s:25:\"pagination_letter_spacing\";s:3:\"0px\";s:22:\"pagination_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;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;}s:46:\"et_pb_section_e8e09bdea3ff432ad5b4c60ae351fcf6\";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_10a4fdb759953ae44575c09356aeb1c1\";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_61ecad9d9bea8a7a929ab596739d1477\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_9ad4799546f5a7fc7d0dd9b93d3c9a27\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_3b5b453cd2ab0b90673915576e936a5c\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_6c389ad015478dc30bea49b2a3cc3893\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_339361082a787cdc1263daf943ef58b1\";a:5:{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:\"scef\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_982b762be924562db4c5768da7db0bf1\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dd9521220aaf3cfb517b2953d2468041\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_074ceb24a233ec6d9b5187091e4cdf23\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1ec482c4eecb9ea26896f031ff1f844b\";a:10:{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:3:\"bor\";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:46:\"et_pb_heading_fb566a34db583e50b13657580a974ed4\";a:5:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c34900c67688e1da7a86b0937053f37f\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c9c56ba8d87da9aca159aee9cd8afb39\";a:10:{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:3:\"bor\";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_18da637b6c7a5f8115f79e912bd5d64e\";a:10:{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:3:\"bor\";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_a31b8dcf9f8c533db453b2da2b54e6ce\";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_e6268de2340ceacdf3e31beac295e9f0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_heading_1a0595a2191d7123cf5dc054e41b9ce0\";a:7:{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:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_e479004cf6f3c186b115160d57d62e9b\";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:42:\"et_pb_row_6fcac9e2773c713e7a6b2edaccad9258\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_27499c8c3a3dc445acecb805031d4084\";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_592c5ac464be5c0ff724b7128722b34f\";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_button_6d6accc5a303021ddbb83837f42250b3\";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_59ebe93dbea0924bfe163847d839ecac\";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:66:\"et_pb_social_media_follow_network_08f08657acbba08061ea21dd5293f6a8\";a:4:{s:4:\"tesh\";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_7f10e889995a4c1f90871cbd1325c265\";a:4:{s:4:\"tesh\";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_9e40626fc173323944fdad726a867ce9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_4a57588425a885f09e98ebb6d8093f54\";a:7:{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;}}}'),
(358,1,'_et_dynamic_cached_shortcodes','a:17:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:18:\"et_pb_post_content\";i:2;s:13:\"et_pb_section\";i:3;s:9:\"et_pb_row\";i:4;s:12:\"et_pb_column\";i:5;s:10:\"et_pb_blog\";i:6;s:11:\"et_pb_blurb\";i:7;s:12:\"et_pb_button\";i:8;s:14:\"et_pb_comments\";i:9;s:13:\"et_pb_divider\";i:10;s:13:\"et_pb_heading\";i:11;s:11:\"et_pb_image\";i:12;s:10:\"et_pb_menu\";i:13;s:14:\"et_pb_post_nav\";i:14;s:16:\"et_pb_post_title\";i:15;s:25:\"et_pb_social_media_follow\";i:16;s:10:\"et_pb_text\";}'),
(359,1,'_et_dynamic_cached_attributes','a:588:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:14:\"social_network\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:7:\"behance\";i:4;s:8:\"dribbble\";}s:29:\"scroll_vertical_motion_enable\";a:1:{i:0;s:2:\"on\";}s:9:\"font_icon\";a:1:{i:0;s:17:\"&#x5c;||divi||400\";}s:15:\"animation_style\";s:4:\"none\";s:16:\"background_color\";s:41:\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\";s:18:\"global_colors_info\";s:161:\"{\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e\":[\"background_color_gradient_stops\"],\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\":[\"background_color_gradient_stops\"]}\";s:29:\"use_background_color_gradient\";s:2:\"on\";s:31:\"background_color_gradient_stops\";s:57:\"#191919 0%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\";s:40:\"background_color_gradient_overlays_image\";s:2:\"on\";s:11:\"title_level\";s:2:\"h1\";s:10:\"title_font\";s:13:\"|700||on|||||\";s:15:\"title_font_size\";s:4:\"38px\";s:22:\"title_font_size_tablet\";s:4:\"29px\";s:21:\"title_font_size_phone\";s:4:\"22px\";s:27:\"title_font_size_last_edited\";s:8:\"on|phone\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:5:\"1.4em\";s:13:\"custom_margin\";s:31:\"0em|0em|1.618em|0em|false|false\";s:16:\"text_line_height\";s:5:\"1.8em\";s:14:\"ul_line_height\";s:5:\"1.8em\";s:14:\"ol_line_height\";s:5:\"1.8em\";s:15:\"quote_font_size\";s:4:\"30px\";s:22:\"quote_font_size_tablet\";s:4:\"24px\";s:21:\"quote_font_size_phone\";s:4:\"19px\";s:27:\"quote_font_size_last_edited\";s:10:\"on|desktop\";s:17:\"quote_line_height\";s:5:\"1.4em\";s:16:\"header_font_size\";s:4:\"38px\";s:23:\"header_font_size_tablet\";s:4:\"29px\";s:22:\"header_font_size_phone\";s:4:\"22px\";s:28:\"header_font_size_last_edited\";s:8:\"on|phone\";s:18:\"header_line_height\";s:5:\"1.4em\";s:18:\"header_2_font_size\";s:4:\"26px\";s:25:\"header_2_font_size_tablet\";s:4:\"36px\";s:24:\"header_2_font_size_phone\";s:4:\"26px\";s:30:\"header_2_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_2_line_height\";s:3:\"1em\";s:18:\"header_3_font_size\";s:4:\"22px\";s:25:\"header_3_font_size_tablet\";s:4:\"29px\";s:24:\"header_3_font_size_phone\";s:4:\"22px\";s:30:\"header_3_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_3_line_height\";s:3:\"1em\";s:18:\"header_4_font_size\";s:4:\"18px\";s:25:\"header_4_font_size_tablet\";s:4:\"24px\";s:24:\"header_4_font_size_phone\";s:4:\"19px\";s:30:\"header_4_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_4_line_height\";s:3:\"1em\";s:18:\"header_5_font_size\";s:4:\"16px\";s:25:\"header_5_font_size_tablet\";s:4:\"20px\";s:24:\"header_5_font_size_phone\";s:4:\"17px\";s:30:\"header_5_font_size_last_edited\";s:8:\"on|phone\";s:20:\"header_5_line_height\";s:3:\"1em\";s:18:\"header_6_font_size\";s:4:\"14px\";s:25:\"header_6_font_size_tablet\";s:4:\"17px\";s:24:\"header_6_font_size_phone\";s:4:\"15px\";s:30:\"header_6_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"header_6_line_height\";s:3:\"1em\";s:16:\"quote_text_color\";s:7:\"#FFFFFF\";s:10:\"quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:23:\"background_enable_color\";s:2:\"on\";s:35:\"background_color_gradient_direction\";s:6:\"180deg\";s:30:\"background_color_gradient_unit\";s:1:\"%\";s:31:\"background_color_gradient_start\";s:7:\"#2b87da\";s:40:\"background_color_gradient_start_position\";s:2:\"0%\";s:29:\"background_color_gradient_end\";s:7:\"#29c4a9\";s:38:\"background_color_gradient_end_position\";s:4:\"100%\";s:23:\"background_enable_image\";s:2:\"on\";s:8:\"parallax\";s:3:\"off\";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:27:\"background_enable_video_mp4\";s:2:\"on\";s:28:\"background_enable_video_webm\";s:2:\"on\";s:18:\"allow_player_pause\";s:3:\"off\";s:39:\"background_video_pause_outside_viewport\";s:2:\"on\";s:31:\"background_enable_pattern_style\";s:3:\"off\";s:24:\"background_pattern_style\";s:10:\"polka-dots\";s:32:\"background_pattern_repeat_origin\";s:8:\"top_left\";s:36:\"background_pattern_horizontal_offset\";s:1:\"0\";s:34:\"background_pattern_vertical_offset\";s:1:\"0\";s:25:\"background_pattern_repeat\";s:6:\"repeat\";s:28:\"background_enable_mask_style\";s:3:\"off\";s:21:\"background_mask_style\";s:10:\"layer-blob\";s:14:\"text_font_size\";s:4:\"14px\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:22:\"text_text_shadow_style\";s:4:\"none\";s:14:\"link_font_size\";s:4:\"16px\";s:19:\"link_letter_spacing\";s:3:\"0px\";s:16:\"link_line_height\";s:3:\"1em\";s:22:\"link_text_shadow_style\";s:4:\"none\";s:12:\"ul_font_size\";s:4:\"14px\";s:17:\"ul_letter_spacing\";s:3:\"0px\";s:20:\"ul_text_shadow_style\";s:4:\"none\";s:12:\"ol_font_size\";s:4:\"14px\";s:17:\"ol_letter_spacing\";s:3:\"0px\";s:20:\"ol_text_shadow_style\";s:4:\"none\";s:20:\"quote_letter_spacing\";s:3:\"0px\";s:23:\"quote_text_shadow_style\";s:4:\"none\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:24:\"header_text_shadow_style\";s:4:\"none\";s:23:\"header_2_letter_spacing\";s:3:\"0px\";s:26:\"header_2_text_shadow_style\";s:4:\"none\";s:23:\"header_3_letter_spacing\";s:3:\"0px\";s:26:\"header_3_text_shadow_style\";s:4:\"none\";s:23:\"header_4_letter_spacing\";s:3:\"0px\";s:26:\"header_4_text_shadow_style\";s:4:\"none\";s:23:\"header_5_letter_spacing\";s:3:\"0px\";s:26:\"header_5_text_shadow_style\";s:4:\"none\";s:23:\"header_6_letter_spacing\";s:3:\"0px\";s:26:\"header_6_text_shadow_style\";s:4:\"none\";s:12:\"border_radii\";s:6:\"on||||\";s:16:\"box_shadow_style\";s:4:\"none\";s:16:\"text_orientation\";s:4:\"left\";s:17:\"background_layout\";s:4:\"dark\";s:5:\"width\";s:4:\"auto\";s:9:\"max_width\";s:4:\"none\";s:10:\"min_height\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";s:10:\"max_height\";s:4:\"none\";s:17:\"filter_hue_rotate\";s:4:\"0deg\";s:15:\"filter_saturate\";s:4:\"100%\";s:17:\"filter_brightness\";s:4:\"100%\";s:15:\"filter_contrast\";s:4:\"100%\";s:13:\"filter_invert\";s:2:\"0%\";s:12:\"filter_sepia\";s:2:\"0%\";s:14:\"filter_opacity\";s:4:\"100%\";s:11:\"filter_blur\";s:3:\"0px\";s:14:\"mix_blend_mode\";s:6:\"normal\";s:11:\"positioning\";s:4:\"none\";s:17:\"position_origin_a\";s:8:\"top_left\";s:17:\"position_origin_f\";s:8:\"top_left\";s:17:\"position_origin_r\";s:8:\"top_left\";s:25:\"hover_transition_duration\";s:5:\"300ms\";s:22:\"hover_transition_delay\";s:3:\"0ms\";s:28:\"hover_transition_speed_curve\";s:4:\"ease\";s:15:\"sticky_position\";s:4:\"none\";s:16:\"sticky_limit_top\";s:4:\"none\";s:19:\"sticky_limit_bottom\";s:4:\"none\";s:25:\"sticky_offset_surrounding\";s:2:\"on\";s:17:\"sticky_transition\";s:2:\"on\";s:15:\"text_text_color\";s:7:\"#FFFFFF\";s:9:\"link_font\";s:10:\"||||on||||\";s:17:\"header_text_color\";s:7:\"#FFFFFF\";s:19:\"header_2_text_color\";s:7:\"#FFFFFF\";s:19:\"header_3_text_color\";s:7:\"#FFFFFF\";s:19:\"header_4_text_color\";s:7:\"#FFFFFF\";s:19:\"header_5_text_color\";s:7:\"#FFFFFF\";s:19:\"header_6_text_color\";s:7:\"#FFFFFF\";s:13:\"custom_button\";s:2:\"on\";s:14:\"custom_padding\";s:29:\"60px|60px|60px|60px|true|true\";s:21:\"button_letter_spacing\";s:6:\"0.04em\";s:15:\"button_bg_color\";s:7:\"#FFFFFF\";s:17:\"button_text_color\";s:7:\"#000000\";s:15:\"button_on_hover\";s:3:\"off\";s:30:\"button_bg_color__hover_enabled\";s:10:\"on|desktop\";s:29:\"button_bg_enable_color__hover\";s:2:\"on\";s:32:\"button_text_color__hover_enabled\";s:10:\"on|desktop\";s:24:\"button_text_color__hover\";s:7:\"#000000\";s:22:\"button_bg_enable_color\";s:2:\"on\";s:19:\"button_border_color\";s:41:\"gcid-35ce9224-a6b6-4873-b9ef-12b8ff42527c\";s:22:\"button_bg_color__hover\";s:18:\"gcid-primary-color\";s:34:\"button_border_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_border_color__hover\";s:18:\"gcid-primary-color\";s:10:\"_unique_id\";s:36:\"40a46410-344b-4bfb-9fe4-64cdf259a9a1\";s:21:\"button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:21:\"form_field_text_color\";s:7:\"#FFFFFF\";s:27:\"form_field_background_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"border_width_all\";s:3:\"1px\";s:16:\"border_color_all\";s:7:\"#000000\";s:16:\"title_text_color\";s:7:\"#FFFFFF\";s:18:\"captcha_text_color\";s:7:\"#FFFFFF\";s:23:\"title_text_shadow_style\";s:4:\"none\";s:22:\"captcha_letter_spacing\";s:3:\"0px\";s:19:\"captcha_line_height\";s:5:\"1.7em\";s:25:\"captcha_text_shadow_style\";s:4:\"none\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:28:\"form_field_text_shadow_style\";s:4:\"none\";s:16:\"button_text_size\";s:2:\"14\";s:28:\"button_bg_use_color_gradient\";s:3:\"off\";s:31:\"button_bg_color_gradient_repeat\";s:3:\"off\";s:29:\"button_bg_color_gradient_type\";s:6:\"linear\";s:34:\"button_bg_color_gradient_direction\";s:6:\"180deg\";s:41:\"button_bg_color_gradient_direction_radial\";s:6:\"center\";s:30:\"button_bg_color_gradient_stops\";s:23:\"#2b87da 0%|#29c4a9 100%\";s:29:\"button_bg_color_gradient_unit\";s:1:\"%\";s:39:\"button_bg_color_gradient_overlays_image\";s:3:\"off\";s:30:\"button_bg_color_gradient_start\";s:7:\"#2b87da\";s:39:\"button_bg_color_gradient_start_position\";s:2:\"0%\";s:28:\"button_bg_color_gradient_end\";s:7:\"#29c4a9\";s:37:\"button_bg_color_gradient_end_position\";s:4:\"100%\";s:22:\"button_bg_enable_image\";s:2:\"on\";s:18:\"button_bg_parallax\";s:3:\"off\";s:25:\"button_bg_parallax_method\";s:2:\"on\";s:14:\"button_bg_size\";s:5:\"cover\";s:18:\"button_bg_position\";s:6:\"center\";s:16:\"button_bg_repeat\";s:9:\"no-repeat\";s:15:\"button_bg_blend\";s:6:\"normal\";s:26:\"button_bg_enable_video_mp4\";s:2:\"on\";s:27:\"button_bg_enable_video_webm\";s:2:\"on\";s:28:\"button_bg_allow_player_pause\";s:3:\"off\";s:38:\"button_bg_video_pause_outside_viewport\";s:2:\"on\";s:15:\"button_use_icon\";s:2:\"on\";s:21:\"button_icon_placement\";s:5:\"right\";s:24:\"button_text_shadow_style\";s:4:\"none\";s:23:\"box_shadow_style_button\";s:4:\"none\";s:17:\"text_shadow_style\";s:4:\"none\";s:20:\"use_background_color\";s:3:\"off\";s:23:\"border_width_all_fields\";s:3:\"1px\";s:23:\"border_color_all_fields\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:19:\"border_radii_fields\";s:18:\"on|0px|0px|0px|0px\";s:6:\"layout\";s:6:\"inline\";s:15:\"email_fullwidth\";s:2:\"on\";s:12:\"header_level\";s:2:\"h2\";s:14:\"body_font_size\";s:4:\"16px\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.4em\";s:22:\"body_text_shadow_style\";s:4:\"none\";s:29:\"result_message_letter_spacing\";s:3:\"0px\";s:32:\"result_message_text_shadow_style\";s:4:\"none\";s:19:\"body_link_font_size\";s:4:\"16px\";s:24:\"body_link_letter_spacing\";s:3:\"0px\";s:21:\"body_link_line_height\";s:3:\"1em\";s:27:\"body_link_text_shadow_style\";s:4:\"none\";s:17:\"body_ul_font_size\";s:4:\"14px\";s:22:\"body_ul_letter_spacing\";s:3:\"0px\";s:19:\"body_ul_line_height\";s:5:\"1.8em\";s:25:\"body_ul_text_shadow_style\";s:4:\"none\";s:17:\"body_ol_font_size\";s:4:\"14px\";s:22:\"body_ol_letter_spacing\";s:3:\"0px\";s:19:\"body_ol_line_height\";s:5:\"1.8em\";s:25:\"body_ol_text_shadow_style\";s:4:\"none\";s:20:\"body_quote_font_size\";s:4:\"30px\";s:25:\"body_quote_letter_spacing\";s:3:\"0px\";s:22:\"body_quote_line_height\";s:5:\"1.4em\";s:28:\"body_quote_text_shadow_style\";s:4:\"none\";s:22:\"use_focus_border_color\";s:3:\"off\";s:23:\"box_shadow_style_fields\";s:4:\"none\";s:17:\"content_max_width\";s:4:\"none\";s:9:\"animation\";s:3:\"off\";s:16:\"image_icon_width\";s:4:\"20px\";s:14:\"icon_alignment\";s:4:\"left\";s:14:\"icon_placement\";s:4:\"left\";s:21:\"body_quote_text_color\";s:18:\"gcid-primary-color\";s:27:\"body_quote_font_size_tablet\";s:4:\"24px\";s:26:\"body_quote_font_size_phone\";s:4:\"19px\";s:32:\"body_quote_font_size_last_edited\";s:10:\"on|desktop\";s:15:\"body_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"header_text_color__hover\";s:7:\"#FFFFFF\";s:32:\"header_text_color__hover_enabled\";s:8:\"on|hover\";s:15:\"body_text_color\";s:7:\"#FFFFFF\";s:22:\"body_text_color__hover\";s:7:\"#FFFFFF\";s:30:\"body_text_color__hover_enabled\";s:8:\"on|hover\";s:21:\"custom_padding_tablet\";s:29:\"30px|30px|30px|30px|true|true\";s:20:\"custom_padding_phone\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"custom_padding_last_edited\";s:10:\"on|desktop\";s:25:\"background__hover_enabled\";s:8:\"on|hover\";s:30:\"background_enable_image__hover\";s:3:\"off\";s:36:\"use_background_color_gradient__hover\";s:3:\"off\";s:47:\"background_color_gradient_overlays_image__hover\";s:2:\"on\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:25:\"icon_color__hover_enabled\";s:10:\"on|desktop\";s:17:\"icon_color__hover\";s:18:\"gcid-primary-color\";s:23:\"background_color__hover\";s:15:\"rgba(0,0,0,0.8)\";s:30:\"background_enable_color__hover\";s:2:\"on\";s:31:\"transform_styles__hover_enabled\";s:8:\"on|hover\";s:30:\"transform_scale__hover_enabled\";s:10:\"on|desktop\";s:34:\"transform_translate__hover_enabled\";s:8:\"on|hover\";s:31:\"transform_rotate__hover_enabled\";s:10:\"on|desktop\";s:29:\"transform_skew__hover_enabled\";s:10:\"on|desktop\";s:31:\"transform_origin__hover_enabled\";s:10:\"on|desktop\";s:33:\"transform_translate_linked__hover\";s:3:\"off\";s:26:\"transform_translate__hover\";s:8:\"0px|-5px\";s:21:\"box_shadow_horizontal\";s:3:\"0px\";s:19:\"box_shadow_vertical\";s:4:\"50px\";s:15:\"box_shadow_blur\";s:4:\"80px\";s:17:\"box_shadow_spread\";s:4:\"-6px\";s:19:\"box_shadow_position\";s:5:\"outer\";s:16:\"box_shadow_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"box_shadow_color__hover_enabled\";s:8:\"on|hover\";s:23:\"box_shadow_color__hover\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"body_link_text_color\";s:7:\"#FFFFFF\";s:14:\"body_link_font\";s:10:\"||||on||||\";s:23:\"body_quote_border_color\";s:7:\"#FFFFFF\";s:18:\"border_radii_image\";s:26:\"on|200px|200px|200px|200px\";s:22:\"box_shadow_style_image\";s:4:\"none\";s:23:\"child_filter_hue_rotate\";s:4:\"0deg\";s:21:\"child_filter_saturate\";s:4:\"100%\";s:23:\"child_filter_brightness\";s:4:\"100%\";s:21:\"child_filter_contrast\";s:4:\"100%\";s:19:\"child_filter_invert\";s:2:\"0%\";s:18:\"child_filter_sepia\";s:2:\"0%\";s:20:\"child_filter_opacity\";s:4:\"100%\";s:17:\"child_filter_blur\";s:3:\"0px\";s:20:\"child_mix_blend_mode\";s:6:\"normal\";s:9:\"fullwidth\";s:3:\"off\";s:14:\"meta_font_size\";s:4:\"14px\";s:15:\"meta_text_color\";s:7:\"#FFFFFF\";s:19:\"read_more_font_size\";s:4:\"14px\";s:20:\"pagination_font_size\";s:4:\"14px\";s:11:\"use_overlay\";s:2:\"on\";s:19:\"meta_letter_spacing\";s:6:\"0.04em\";s:22:\"meta_text_shadow_style\";s:4:\"none\";s:24:\"read_more_letter_spacing\";s:6:\"0.04em\";s:27:\"read_more_text_shadow_style\";s:4:\"none\";s:25:\"pagination_letter_spacing\";s:6:\"0.04em\";s:28:\"pagination_text_shadow_style\";s:4:\"none\";s:9:\"show_more\";s:2:\"on\";s:29:\"masonry_tile_background_color\";s:19:\"RGBA(255,255,255,0)\";s:9:\"meta_font\";s:13:\"|700||on|||||\";s:14:\"read_more_font\";s:13:\"|700||on|||||\";s:15:\"pagination_font\";s:13:\"|700||on|||||\";s:25:\"custom_css_featured_image\";s:12:\"width: 100%;\";s:14:\"use_bg_overlay\";s:2:\"on\";s:16:\"meta_line_height\";s:3:\"1em\";s:13:\"content_width\";s:4:\"auto\";s:4:\"auto\";s:3:\"off\";s:16:\"bg_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:30:\"closed_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:28:\"open_toggle_background_color\";s:19:\"RGBA(255,255,255,0)\";s:16:\"toggle_font_size\";s:4:\"24px\";s:23:\"toggle_font_size_tablet\";s:4:\"20px\";s:22:\"toggle_font_size_phone\";s:4:\"17px\";s:28:\"toggle_font_size_last_edited\";s:10:\"on|desktop\";s:18:\"toggle_line_height\";s:5:\"1.4em\";s:17:\"toggle_text_color\";s:18:\"gcid-heading-color\";s:11:\"toggle_icon\";s:17:\"&#xf0fe;||fa||400\";s:19:\"border_width_bottom\";s:3:\"1px\";s:15:\"open_icon_color\";s:7:\"#000000\";s:38:\"body_ul_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:16:\"open_toggle_icon\";s:17:\"&#xf146;||fa||400\";s:14:\"divider_weight\";s:3:\"2px\";s:17:\"number_text_color\";s:18:\"gcid-heading-color\";s:16:\"number_font_size\";s:4:\"50px\";s:28:\"number_font_size_last_edited\";s:10:\"on|desktop\";s:23:\"number_font_size_tablet\";s:4:\"32px\";s:22:\"number_font_size_phone\";s:4:\"32px\";s:10:\"icon_width\";s:4:\"32px\";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:19:\"hover_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:18:\"show_image_overlay\";s:2:\"on\";s:12:\"caption_font\";s:13:\"|700||on|||||\";s:18:\"numbers_text_color\";s:18:\"gcid-heading-color\";s:17:\"numbers_font_size\";s:4:\"50px\";s:29:\"numbers_font_size_last_edited\";s:8:\"on|phone\";s:24:\"numbers_font_size_tablet\";s:4:\"32px\";s:23:\"numbers_font_size_phone\";s:4:\"24px\";s:16:\"label_text_color\";s:15:\"gcid-body-color\";s:27:\"label_font_size_last_edited\";s:8:\"on|phone\";s:21:\"label_font_size_phone\";s:4:\"12px\";s:18:\"circle_color_alpha\";s:1:\"1\";s:12:\"circle_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:12:\"bar_bg_color\";s:7:\"#000000\";s:12:\"button_color\";s:7:\"#000000\";s:11:\"button_font\";s:13:\"|700||on|||||\";s:31:\"featured_table_background_color\";s:41:\"gcid-beb2c95b-3a59-4769-93ca-ebc39d60c20d\";s:23:\"header_background_color\";s:19:\"RGBA(255,255,255,0)\";s:22:\"custom_css_pricing_top\";s:29:\"border: 0;||padding-bottom: 0\";s:12:\"bullet_color\";s:15:\"gcid-body-color\";s:20:\"subheader_text_color\";s:18:\"gcid-heading-color\";s:29:\"currency_frequency_text_color\";s:15:\"gcid-body-color\";s:13:\"excluded_font\";s:10:\"||||||on||\";s:14:\"subheader_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:21:\"subheader_line_height\";s:5:\"1.4em\";s:19:\"subheader_font_size\";s:4:\"19px\";s:31:\"subheader_font_size_last_edited\";s:10:\"on|desktop\";s:26:\"subheader_font_size_tablet\";s:4:\"17px\";s:25:\"subheader_font_size_phone\";s:4:\"15px\";s:25:\"show_featured_drop_shadow\";s:3:\"off\";s:16:\"price_text_color\";s:7:\"#FFFFFF\";s:15:\"price_font_size\";s:4:\"50px\";s:27:\"price_font_size_last_edited\";s:8:\"on|phone\";s:22:\"price_font_size_tablet\";s:4:\"32px\";s:21:\"price_font_size_phone\";s:4:\"24px\";s:15:\"logo_max_height\";s:4:\"64px\";s:14:\"show_cart_icon\";s:2:\"on\";s:18:\"show_cart_quantity\";s:2:\"on\";s:16:\"show_search_icon\";s:2:\"on\";s:4:\"logo\";s:80:\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50Ijoic2l0ZV9sb2dvIiwic2V0dGluZ3MiOnt9fQ==@\";s:19:\"_dynamic_attributes\";s:4:\"logo\";s:17:\"active_link_color\";s:18:\"gcid-primary-color\";s:14:\"menu_font_size\";s:4:\"16px\";s:15:\"menu_text_color\";s:18:\"gcid-heading-color\";s:22:\"dropdown_menu_bg_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menu_active_link_color\";s:18:\"gcid-primary-color\";s:20:\"mobile_menu_bg_color\";s:7:\"#FFFFFF\";s:15:\"cart_icon_color\";s:7:\"#000000\";s:17:\"search_icon_color\";s:7:\"#000000\";s:15:\"menu_icon_color\";s:7:\"#000000\";s:19:\"cart_icon_font_size\";s:4:\"16px\";s:21:\"search_icon_font_size\";s:4:\"16px\";s:20:\"custom_css_free_form\";s:53:\".selector .et_pb_menu__search-input { color: white; }\";s:10:\"menu_style\";s:12:\"left_aligned\";s:10:\"logo_width\";s:4:\"auto\";s:14:\"logo_max_width\";s:4:\"100%\";s:11:\"logo_height\";s:4:\"auto\";s:19:\"menu_letter_spacing\";s:3:\"0px\";s:16:\"menu_line_height\";s:3:\"1em\";s:22:\"menu_text_shadow_style\";s:4:\"none\";s:23:\"dropdown_menu_animation\";s:4:\"fade\";s:24:\"dropdown_menu_text_color\";s:15:\"gcid-body-color\";s:22:\"mobile_menu_text_color\";s:15:\"gcid-body-color\";s:15:\"force_fullwidth\";s:2:\"on\";s:12:\"image_height\";s:4:\"auto\";s:16:\"image_max_height\";s:4:\"none\";s:10:\"text_color\";s:4:\"dark\";s:15:\"text_background\";s:3:\"off\";s:11:\"show_border\";s:3:\"off\";s:38:\"body_ol_letter_spacing__sticky_enabled\";s:11:\"off|desktop\";s:17:\"author_text_color\";s:18:\"gcid-heading-color\";s:16:\"quote_icon_color\";s:20:\"gcid-secondary-color\";s:15:\"zoom_icon_color\";s:20:\"gcid-secondary-color\";s:18:\"caption_text_color\";s:7:\"#FFFFFF\";s:16:\"filter_font_size\";s:4:\"16px\";s:28:\"filter_font_size_last_edited\";s:8:\"on|phone\";s:23:\"filter_font_size_tablet\";s:4:\"15px\";s:22:\"filter_font_size_phone\";s:4:\"14px\";s:22:\"caption_letter_spacing\";s:6:\"0.04em\";s:21:\"active_tab_text_color\";s:18:\"gcid-primary-color\";s:13:\"tab_font_size\";s:4:\"16px\";s:25:\"tab_font_size_last_edited\";s:10:\"on|desktop\";s:20:\"tab_font_size_tablet\";s:4:\"15px\";s:19:\"tab_font_size_phone\";s:4:\"14px\";s:18:\"header_scroll_down\";s:2:\"on\";s:21:\"scroll_down_icon_size\";s:4:\"32px\";s:23:\"content_link_text_color\";s:7:\"#FFFFFF\";s:17:\"content_link_font\";s:10:\"||||on||||\";s:22:\"content_ul_line_height\";s:5:\"1.8em\";s:22:\"content_ol_line_height\";s:5:\"1.8em\";s:18:\"content_quote_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:24:\"content_quote_text_color\";s:7:\"#FFFFFF\";s:26:\"content_quote_border_color\";s:7:\"#FFFFFF\";s:25:\"content_quote_line_height\";s:5:\"1.4em\";s:23:\"content_quote_font_size\";s:4:\"30px\";s:35:\"content_quote_font_size_last_edited\";s:9:\"on|tablet\";s:30:\"content_quote_font_size_tablet\";s:4:\"24px\";s:29:\"content_quote_font_size_phone\";s:4:\"19px\";s:17:\"custom_button_one\";s:2:\"on\";s:21:\"button_one_text_color\";s:7:\"#000000\";s:19:\"button_one_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_one_bg_enable_color\";s:2:\"on\";s:25:\"button_one_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_one_letter_spacing\";s:6:\"0.04em\";s:17:\"custom_button_two\";s:2:\"on\";s:21:\"button_two_text_color\";s:7:\"#000000\";s:19:\"button_two_bg_color\";s:7:\"#FFFFFF\";s:26:\"button_two_bg_enable_color\";s:2:\"on\";s:25:\"button_two_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:25:\"button_two_letter_spacing\";s:6:\"0.04em\";s:12:\"subhead_font\";s:63:\"--et_global_heading_font|--et_global_heading_font_weight|||||||\";s:19:\"subhead_line_height\";s:5:\"1.4em\";s:17:\"subhead_font_size\";s:4:\"30px\";s:29:\"subhead_font_size_last_edited\";s:8:\"on|phone\";s:24:\"subhead_font_size_tablet\";s:4:\"24px\";s:23:\"subhead_font_size_phone\";s:4:\"19px\";s:24:\"background_overlay_color\";s:41:\"gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf\";s:34:\"button_one_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_one_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_one_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_one_on_hover\";s:3:\"off\";s:34:\"button_two_bg_color__hover_enabled\";s:10:\"on|desktop\";s:26:\"button_two_bg_color__hover\";s:18:\"gcid-primary-color\";s:33:\"button_two_bg_enable_color__hover\";s:2:\"on\";s:19:\"button_two_on_hover\";s:3:\"off\";s:26:\"portfolio_header_font_size\";s:4:\"38px\";s:33:\"portfolio_header_font_size_tablet\";s:4:\"29px\";s:32:\"portfolio_header_font_size_phone\";s:4:\"22px\";s:38:\"portfolio_header_font_size_last_edited\";s:8:\"on|phone\";s:28:\"portfolio_header_line_height\";s:5:\"1.4em\";s:17:\"border_radii_form\";s:18:\"on|0px|0px|0px|0px\";s:21:\"border_width_all_form\";s:3:\"0px\";s:19:\"form_custom_padding\";s:25:\"0px|0px|0px|0px|true|true\";s:21:\"field_label_font_size\";s:4:\"13px\";s:27:\"border_width_all_form_field\";s:3:\"1px\";s:27:\"border_color_all_form_field\";s:7:\"#FFFFFF\";s:11:\"button_icon\";s:17:\"&#x26;||divi||400\";s:21:\"title_link_text_color\";s:18:\"gcid-primary-color\";s:12:\"fields_width\";s:7:\"default\";s:20:\"title_link_font_size\";s:4:\"18px\";s:25:\"title_link_letter_spacing\";s:3:\"0px\";s:22:\"title_link_line_height\";s:5:\"1.7em\";s:28:\"title_link_text_shadow_style\";s:4:\"none\";s:15:\"error_font_size\";s:4:\"18px\";s:20:\"error_letter_spacing\";s:3:\"0px\";s:17:\"error_line_height\";s:5:\"1.7em\";s:23:\"error_text_shadow_style\";s:4:\"none\";s:22:\"content_letter_spacing\";s:3:\"0px\";s:19:\"content_line_height\";s:5:\"1.7em\";s:25:\"content_text_shadow_style\";s:4:\"none\";s:22:\"field_label_text_color\";s:7:\"#FFFFFF\";s:26:\"field_label_letter_spacing\";s:3:\"0px\";s:23:\"field_label_line_height\";s:3:\"2em\";s:29:\"field_label_text_shadow_style\";s:4:\"none\";s:20:\"form_field_font_size\";s:4:\"14px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";s:23:\"border_radii_form_field\";s:18:\"on|0px|0px|0px|0px\";s:27:\"box_shadow_style_form_field\";s:4:\"none\";s:21:\"box_shadow_style_form\";s:4:\"none\";s:18:\"content_text_color\";s:7:\"#FFFFFF\";s:15:\"link_text_color\";s:7:\"#FFFFFF\";s:17:\"placeholder_color\";s:7:\"#FFFFFF\";s:17:\"rating_text_color\";s:20:\"gcid-secondary-color\";s:21:\"rating_letter_spacing\";s:3:\"0px\";s:23:\"fields_background_color\";s:19:\"RGBA(255,255,255,0)\";s:17:\"fields_text_color\";s:7:\"#FFFFFF\";s:31:\"dropdown_menus_background_color\";s:19:\"RGBA(255,255,255,0)\";s:31:\"border_width_all_dropdown_menus\";s:3:\"1px\";s:31:\"border_color_all_dropdown_menus\";s:7:\"#FFFFFF\";s:25:\"dropdown_menus_text_color\";s:7:\"#FFFFFF\";s:33:\"border_radii_dropdown_menus_focus\";s:18:\"on|0px|0px|0px|0px\";s:20:\"field_label_position\";s:7:\"default\";s:16:\"fields_font_size\";s:4:\"20px\";s:21:\"fields_letter_spacing\";s:3:\"0px\";s:18:\"fields_line_height\";s:3:\"1em\";s:24:\"fields_text_shadow_style\";s:4:\"none\";s:24:\"dropdown_menus_font_size\";s:4:\"12px\";s:29:\"dropdown_menus_letter_spacing\";s:3:\"0px\";s:32:\"dropdown_menus_text_shadow_style\";s:4:\"none\";s:31:\"box_shadow_style_dropdown_menus\";s:4:\"none\";s:16:\"sale_badge_color\";s:20:\"gcid-secondary-color\";s:15:\"sale_badge_font\";s:13:\"|700||on|||||\";s:21:\"sale_badge_text_color\";s:7:\"#FFFFFF\";s:23:\"border_radii_sale_badge\";s:18:\"on|0px|0px|0px|0px\";s:20:\"sale_badge_font_size\";s:4:\"14px\";s:21:\"pagination_text_color\";s:7:\"#FFFFFF\";s:10:\"show_title\";s:2:\"on\";s:22:\"border_color_all_table\";s:19:\"RGBA(255,255,255,0)\";s:25:\"table_cell_custom_padding\";s:18:\"|||0px|false|false\";s:20:\"attribute_text_color\";s:7:\"#FFFFFF\";s:27:\"border_style_all_table_cell\";s:5:\"solid\";s:27:\"border_width_all_table_cell\";s:3:\"0px\";s:30:\"border_color_bottom_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:26:\"table_row_background_color\";s:19:\"RGBA(255,255,255,0)\";s:30:\"border_width_bottom_table_cell\";s:3:\"1px\";s:16:\"icon_hover_color\";s:20:\"gcid-secondary-color\";s:23:\"product_title_font_size\";s:4:\"19px\";s:30:\"product_title_font_size_tablet\";s:4:\"17px\";s:29:\"product_title_font_size_phone\";s:4:\"15px\";s:35:\"product_title_font_size_last_edited\";s:10:\"on|desktop\";s:25:\"product_title_line_height\";s:5:\"1.4em\";s:24:\"product_title_text_color\";s:7:\"#FFFFFF\";s:15:\"show_pagination\";s:2:\"on\";s:16:\"rating_font_size\";s:2:\"14\";s:19:\"table_custom_margin\";s:18:\"||0px||false|false\";s:18:\"border_radii_table\";s:18:\"on|0px|0px|0px|0px\";s:22:\"border_width_all_table\";s:3:\"0px\";s:23:\"table_header_text_color\";s:7:\"#FFFFFF\";s:27:\"border_color_all_table_cell\";s:41:\"gcid-79008fab-ccde-4aaf-8238-1144e270bf33\";s:25:\"disabled_button_text_size\";s:4:\"14px\";s:22:\"custom_disabled_button\";s:2:\"on\";s:26:\"disabled_button_text_color\";s:7:\"#000000\";s:24:\"disabled_button_bg_color\";s:7:\"#FFFFFF\";s:31:\"disabled_button_bg_enable_color\";s:2:\"on\";s:28:\"disabled_button_border_width\";s:3:\"2px\";s:28:\"disabled_button_border_color\";s:19:\"RGBA(255,255,255,0)\";s:20:\"disabled_button_font\";s:11:\"|700|||||||\";s:30:\"disabled_button_custom_padding\";s:30:\"16px|40px|16px|24px|true|false\";s:30:\"disabled_button_letter_spacing\";s:6:\"0.04em\";s:29:\"disabled_button_border_radius\";s:4:\"20px\";s:41:\"disabled_button_text_color__hover_enabled\";s:9:\"off|hover\";s:33:\"disabled_button_text_color__hover\";s:7:\"#FFFFFF\";s:24:\"disabled_button_on_hover\";s:3:\"off\";s:20:\"disabled_button_icon\";s:17:\"&#x26;||divi||400\";s:39:\"disabled_button_bg_color__hover_enabled\";s:8:\"on|hover\";s:31:\"disabled_button_bg_color__hover\";s:18:\"gcid-primary-color\";s:38:\"disabled_button_bg_enable_color__hover\";s:2:\"on\";s:20:\"table_custom_padding\";s:29:\"40px|40px|40px|40px|true|true\";s:27:\"table_custom_padding_tablet\";s:29:\"20px|20px|20px|20px|true|true\";s:26:\"table_custom_padding_phone\";s:29:\"10px|10px|10px|10px|true|true\";s:32:\"table_custom_padding_last_edited\";s:9:\"on|tablet\";s:23:\"column_label_text_color\";s:7:\"#FFFFFF\";s:22:\"form_notice_text_color\";s:18:\"gcid-heading-color\";s:21:\"form_notice_font_size\";s:4:\"14px\";s:23:\"form_notice_line_height\";s:5:\"1.8em\";s:28:\"form_notice_background_color\";s:7:\"#FFFFFF\";s:22:\"tooltip_custom_padding\";s:29:\"15px|15px|15px|15px|true|true\";s:24:\"tooltip_background_color\";s:7:\"#FFFFFF\";s:18:\"tooltip_text_color\";s:18:\"gcid-heading-color\";s:17:\"tooltip_font_size\";s:4:\"14px\";s:19:\"tooltip_line_height\";s:5:\"1.8em\";s:20:\"border_radii_tooltip\";s:18:\"on|0px|0px|0px|0px\";s:23:\"radio_button_text_color\";s:7:\"#FFFFFF\";}'),
(360,1,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:15:\"et-gf-gothic-a1\";s:49:\"Gothic+A1:100,200,300,regular,500,600,700,800,900\";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\":4,\"divi\":\"4.27.4\",\"wp\":\"6.8.2\",\"enable_all_character_sets\":\"false\"}\";}');
/*!40000 ALTER TABLE `ePgN5dhl_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ePgN5dhl_posts`
--

DROP TABLE IF EXISTS `ePgN5dhl_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_posts`
--

LOCK TABLES `ePgN5dhl_posts` WRITE;
/*!40000 ALTER TABLE `ePgN5dhl_posts` DISABLE KEYS */;
INSERT INTO `ePgN5dhl_posts` VALUES
(1,1,'2025-09-02 16:58:35','2025-09-02 16:58:35','<!-- 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','','','2025-09-02 16:58:35','2025-09-02 16:58:35','',0,'https://jestley.com/?p=1',0,'post','',1),
(2,1,'2025-09-02 16:58:35','2025-09-02 16:58:35','<!-- 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://jestley.com/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','','','2025-09-02 16:58:35','2025-09-02 16:58:35','',0,'https://jestley.com/?page_id=2',0,'page','',0),
(3,1,'2025-09-02 16:58:35','2025-09-02 16:58:35','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://jestley.com.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n','Privacy Policy','','draft','closed','open','','privacy-policy','','','2025-09-02 16:58:35','2025-09-02 16:58:35','',0,'https://jestley.com/?page_id=3',0,'page','',0),
(4,0,'2025-09-02 16:58:36','2025-09-02 16:58:36','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2025-09-02 16:58:36','2025-09-02 16:58:36','',0,'https://jestley.com/2025/09/02/navigation/',0,'wp_navigation','',0),
(6,1,'2025-09-02 18:53:30','2025-09-02 18:53:30','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"10%||||false|false\" custom_padding_tablet=\"0%||||false|false\" custom_padding_phone=\"0%||||false|false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Hello, I\'m Sarah\" _builder_version=\"4.27.3\" _module_preset=\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Designer & Developer Crafting Custom Experiences\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Portfolio\" _builder_version=\"4.27.3\" _module_preset=\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-09b.jpg\" title_text=\"freelancer-09b\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"About Me\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Hello! I’m Sarah, a digital marketing strategist based in Berlin with over a decade of industry expertise. I’m passionate about leveraging online platforms to solve business challenges effectively.  I’d love to collaborate on your next project!\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"@sarahsdesigns\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_color=\"gcid-primary-color\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_button button_text=\"More About Me\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"4.27.3\" _module_preset=\"362ada36-891f-4be2-b115-0ee19aadf10c\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"How I Can Help You\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>01.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Strategy\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]02.[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Creative Content\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]03.[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Graphic Design\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]04.[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"SEO Services\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]05.[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Marketing\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"4.27.3\" _module_preset=\"362ada36-891f-4be2-b115-0ee19aadf10c\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"||10px||false|false\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.27.3\" _module_preset=\"aa81cf7c-a285-4ec6-85e0-66a5153af803\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{}\"][et_pb_heading title=\"Full Website Design + Build\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>From the initial concept to the final launch, Sarah handles every aspect of website creation. This service includes designing a visually compelling layout, developing a fully functional site, and ensuring it\'s optimized for both performance and usability. </p>[/et_pb_text][et_pb_button button_text=\"View Case Studies\" _builder_version=\"4.27.3\" _module_preset=\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{%22gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e%22:%91%22background_color%22%93}\"][et_pb_heading title=\"Design -> Live\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_color=\"gcid-primary-color\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>Turn your vision into reality with pixel-perfect precision. By leveraging her development expertise, she ensures your design is implemented flawlessly, with responsive functionality </p>[/et_pb_text][et_pb_button button_text=\"How It Works\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{%22gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e%22:%91%22background_color%22%93}\"][et_pb_heading title=\"Wireframing & Prototyping\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"]<p>With wireframing and prototyping services, Sarah helps map out the structure and user flow of your website or application. The process includes creating detailed wireframes and interactive prototypes, giving you a clear vision of how the final product will function. </p>[/et_pb_text][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/wireframe.png\" title_text=\"wireframe\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_text=\"Learn More\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{%22gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e%22:%91%22background_color%22%93}\"][et_pb_heading title=\"On-going Monthly Support\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_color=\"#FFFFFF\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|gcid-primary-color 60%|#ffffff 100%\" height=\"16px\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22background_color_gradient_stops%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"#ffffff 0%|gcid-primary-color 40%|rgba(255,255,255,0) 100%\" height=\"16px\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22background_color_gradient_stops%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|gcid-primary-color 60%|#ffffff 100%\" height=\"16px\" custom_margin=\"||30px||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22background_color_gradient_stops%22%93}\"][/et_pb_divider][et_pb_blurb title=\"Unlimited requets\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Average 24-48 hours in delivery\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Design Requests\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Monthly reports\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Monthly reports\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_button button_text=\"View Packages\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"d0cbb859-06b9-439f-8115-bd412d324f57\" background_color_gradient_direction=\"145deg\" background_color_gradient_stops=\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e 35%|rgba(255,255,255,0) 100%\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-07b.jpg\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{}\"][et_pb_heading title=\"Custom Projects\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" title_text_color=\"#FFFFFF\" custom_margin=\"||-10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"]<p>Got something special in mind? Let\'s make it happen!</p>[/et_pb_text][et_pb_button button_text=\"Schedule A Call\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"#000000\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"#000000\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"#000000\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"#000000\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Case Studies\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Case Studies\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bold Vision to Reality\" use_icon=\"on\" font_icon=\"&#x26;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"12270984-f7d3-4488-99b8-09529e67403d\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-01.jpg\" link_option_url=\"#\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image__hover=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-01.jpg\" background_enable_image__hover=\"on\"]<p>Crafting a modern, user-centric website from start to finish. This case study showcases a complete design and build process, focusing on simplicity, creativity and elegance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"Product Design\" use_icon=\"on\" font_icon=\"&#x26;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"12270984-f7d3-4488-99b8-09529e67403d\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-02.jpg\" link_option_url=\"#\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image__hover=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-02.jpg\" background_enable_image__hover=\"on\"]<p>Highlighting functionality through meticulous prototyping and elegant product presentation. This case study masterfully intertwines technical precision with captivating visual storytelling.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"Digital Experience\" use_icon=\"on\" font_icon=\"&#x26;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"12270984-f7d3-4488-99b8-09529e67403d\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-03.jpg\" link_option_url=\"#\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image__hover=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-03.jpg\" background_enable_image__hover=\"on\"]<p>Creating an engaging responsive design for tablet users is crucial in today\'s digital landscape. This case study highlights layouts that are both intuitive and optimized.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"View All Work\" button_alignment=\"center\" _builder_version=\"4.27.3\" _module_preset=\"aea6612e-fe2b-464e-8d62-d5d38604b99c\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Why Work With Me\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Why Work With Me?\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Professional Divi Partner\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" custom_margin=\"||10px||false|false\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" border_color_all=\"rgba(0,0,0,0.12)\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>As a certified Divi Partner, I possess expert-level knowledge of the Divi theme and its powerful features. This means I can build you a stunning, high-performing website with incredible speed and efficiency, saving you time and money while delivering exceptional results.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Award-Winning Design\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" custom_margin=\"||10px||false|false\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" border_color_all=\"rgba(0,0,0,0.12)\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>My designs have been recognized for their creativity, usability, and impact. When you work with me, you can be confident that your website will not only look amazing but also effectively communicate your brand message and drive results.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"10+ Years experience\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" custom_margin=\"||10px||false|false\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" border_color_all=\"rgba(0,0,0,0.12)\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>With over a decade of experience in the design and development industry, I have the skills and knowledge to tackle even the most complex projects. I\'ve honed my craft across diverse industries, delivering successful solutions for businesses of all sizes.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"24/7 Service available\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" custom_margin=\"||10px||false|false\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" border_color_all=\"rgba(0,0,0,0.12)\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>Your satisfaction is my top priority. That\'s why I\'m available around the clock to answer your questions, address your concerns, and provide ongoing support. You can count on me to be there for you throughout the entire project lifecycle and beyond.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonials\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Client Testimonials\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"★★★★★\" _builder_version=\"4.27.3\" _module_preset=\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\" title_text_color=\"gcid-primary-color\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_testimonial author=\"Jessica L.\" job_title=\"Founder\" company_name=\"Bloom Skincare\" quote_icon=\"off\" _builder_version=\"4.27.3\" _module_preset=\"06782cea-834f-47b5-a6cf-b17122823fdb\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>\"Sarah has an incredible eye for design! She completely captured the essence of our brand and translated it into a website that is both beautiful and functional. We\'ve received so many compliments on the new look, and our online presence has never been stronger. Highly recommend!\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"★★★★★\" _builder_version=\"4.27.3\" _module_preset=\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\" title_text_color=\"gcid-primary-color\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_testimonial author=\"Mark S.\" job_title=\"CEO\" company_name=\"Tech Solutions Inc.\" quote_icon=\"off\" _builder_version=\"4.27.3\" _module_preset=\"06782cea-834f-47b5-a6cf-b17122823fdb\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>\"We had a very challenging project that required custom development and integration with third-party tools. Sarah\'s technical expertise was invaluable. She not only solved all the technical hurdles but also provided creative solutions that exceeded our expectations. We were truly impressed with her skills and dedication.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"★★★★★\" _builder_version=\"4.27.3\" _module_preset=\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\" title_text_color=\"gcid-primary-color\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_testimonial author=\"Emily R.\" job_title=\"Marketing Director\" company_name=\"Extra Pvt Ltd\" quote_icon=\"off\" _builder_version=\"4.27.3\" _module_preset=\"06782cea-834f-47b5-a6cf-b17122823fdb\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>\"Working with Sarah was an absolute pleasure. She was incredibly responsive, communicative, and collaborative throughout the entire process. She took the time to truly understand our needs and made sure we were involved every step of the way. We felt like we had a true partner in bringing our vision to life.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2025-09-02 18:53:30','2025-09-02 18:53:30','',0,'https://jestley.com/?page_id=6',0,'page','',0),
(7,1,'2025-09-02 18:52:51','2025-09-02 18:52:51',' ','','','publish','closed','closed','','7','','','2025-09-02 18:52:51','2025-09-02 18:52:51','',0,'https://jestley.com/2025/09/02/7/',0,'nav_menu_item','',0),
(8,1,'2025-09-02 18:53:30','2025-09-02 18:53:30','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-09.jpg\" title_text=\"freelancer-09\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" width=\"80px\" hover_enabled=\"0\" border_radii=\"on|60px|60px|60px|60px\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"Hello, I\'m Sarah\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_align=\"center\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"@sarahsdesigns\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" title_text_align=\"center\" title_text_color=\"gcid-primary-color\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>Hi, I’m Sarah—a passionate designer and developer dedicated to crafting custom digital experiences that leave a lasting impact. With a blend of creativity, technical expertise, and an eye for detail, I turn ideas into meaningful, functional designs that resonate with audiences. From an early age, I’ve been fascinated by the intersection of design and technology. This curiosity led me to explore the world of web design and development, where I discovered my ability to merge artistic vision with technical problem-solving. Over the years, I’ve honed my skills to create tailored solutions for clients who value thoughtful design and seamless functionality. Whether it’s building a fully responsive website from scratch, transforming static designs into dynamic, interactive platforms, or collaborating on innovative custom projects, my mission is always the same: to deliver work that not only meets but exceeds expectations. I take pride in paying attention to every detail, ensuring that each project is a true reflection of the client’s vision and goals.</p>\n<p>Beyond the screen, I’m constantly inspired by the world around me—whether it’s the clean lines of modern architecture, the storytelling of great films, or the innovative ideas of fellow creators. I believe that great design isn’t just about aesthetics; it’s about creating experiences that connect and communicate. When I’m not busy designing or coding, you’ll likely find me sketching out new ideas, exploring the latest design trends, or tinkering with tools and technologies to push my craft even further. I’m also a firm believer in collaboration and love working closely with clients to bring their unique visions to life. Let’s create something amazing together. Whether you’re looking for a website that makes an unforgettable first impression or need a creative partner for your next big project, I’d love to hear your story and see how I can help make your ideas a reality.</p>[/et_pb_text][et_pb_button button_text=\"Contact Me\" button_alignment=\"center\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Clients\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Some brands I\'ve worked with\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/logo_03-dark.png\" title_text=\"logo_03-dark\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/logo_08-dark.png\" title_text=\"logo_08-dark\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/logo_05-dark.png\" title_text=\"logo_05-dark\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/logo_02-dark.png\" title_text=\"logo_02-dark\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skills\" _builder_version=\"4.27.3\" _module_preset=\"362ada36-891f-4be2-b115-0ee19aadf10c\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Skills and Expertise\" _builder_version=\"4.27.3\" _module_preset=\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"The Expertise Behind Every Successful Project\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"Learn More\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"User Experience (UX) Design\" icon_placement=\"top\" _builder_version=\"4.27.3\" _module_preset=\"b8ea676a-bda4-461b-8fe0-8f1979a72473\" custom_padding=\"||30px||false|false\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\"]<p>Creating intuitive and engaging user experiences is at the core of what I do.<br />I specialize in researching user needs, developing wireframes, and designing user journeys that align with business goals.</p>[/et_pb_blurb][et_pb_blurb title=\"Front-End Web Development\" icon_placement=\"top\" _builder_version=\"4.27.3\" _module_preset=\"b8ea676a-bda4-461b-8fe0-8f1979a72473\" custom_padding=\"||30px||false|false\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\"]<p>With a deep understanding of HTML, CSS, JavaScript, and responsive design principles, I bring designs to life with clean, efficient code. From dynamic single-page applications to fully interactive websites fast, scalable, and SEO-friendly.</p>[/et_pb_blurb][et_pb_blurb title=\"Brand Identity and Visual Design\" icon_placement=\"top\" _builder_version=\"4.27.3\" _module_preset=\"b8ea676a-bda4-461b-8fe0-8f1979a72473\" custom_padding=\"||30px||false|false\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\"]<p>I help businesses establish strong, memorable brands by creating unique logos, style guides, and visual assets. My approach to brand identity design ensures consistency across digital and print media.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','About','','publish','closed','closed','','about','','','2025-09-02 18:53:30','2025-09-02 18:53:30','',0,'https://jestley.com/?page_id=8',0,'page','',0),
(9,1,'2025-09-02 18:52:51','2025-09-02 18:52:51',' ','','','publish','closed','closed','','9','','','2025-09-02 18:52:51','2025-09-02 18:52:51','',0,'https://jestley.com/2025/09/02/9/',2,'nav_menu_item','',0),
(10,1,'2025-09-02 18:53:30','2025-09-02 18:53:30','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Portfolio\" _builder_version=\"4.27.3\" _module_preset=\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"My Work\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|8%|||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-10.jpg\" title_text=\"freelancer-10\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"RedCarpet\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Crafted a complete visual identity for a luxury fashion brand including logo design, site design, and site development\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\"][/et_pb_button][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-05.jpg\" title_text=\"freelancer-05\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"Analytics Dashboard\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Focused on creating a visually appealing layout that makes complex metrics easy to understand at a glance.\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\" locked=\"off\"][/et_pb_button][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-21b.jpg\" title_text=\"freelancer-21b\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"Website Template\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Designed a versatile website template for small businesses looking to establish a strong online presence.\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\" locked=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|8%|||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-03.jpg\" title_text=\"freelancer-03\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf%22:%91%22hover_overlay_color%22%93}\"][/et_pb_image][et_pb_heading title=\"Mobile App\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Balanced minimalism with functionality, using clean layouts and contrasting colors to guide users intuitively through features like budgeting and expense tracking.\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\" locked=\"off\"][/et_pb_button][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-14.jpg\" title_text=\"freelancer-14\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"Meetup Event Branding\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"The design captures a friendly, inclusive vibe with bold typography, playful illustrations, and a focus on usability. \" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio','','publish','closed','closed','','portfolio','','','2025-09-02 18:53:30','2025-09-02 18:53:30','',0,'https://jestley.com/?page_id=10',0,'page','',0),
(11,1,'2025-09-02 18:52:51','2025-09-02 18:52:51',' ','','','publish','closed','closed','','11','','','2025-09-02 18:52:51','2025-09-02 18:52:51','',0,'https://jestley.com/2025/09/02/11/',3,'nav_menu_item','',0),
(12,1,'2025-09-02 18:53:30','2025-09-02 18:53:30','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" max_width=\"800px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Get In Touch\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>Ready to bring your vision to life? Whether you have a specific project in mind or just want to explore ideas, I’d love to hear from you. Let’s create something amazing together—drop me a message today!</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Phone\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.4\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>778 581 0522</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Email\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.4\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" link_option_url=\"mailto:info@bc3co.com\"]<p>info@BC3Co.com</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.27.4\" _module_preset=\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\" _unique_id=\"7d3f7312-daf8-4e83-9286-090e80bdc079\" hover_enabled=\"0\" global_colors_info=\"{}\" use_spam_service=\"on\" recaptcha_list=\"add_new_account\" recaptcha_account_name=\"BC3Co\" recaptcha_site_key=\"6LdYELwrAAAAAJI_foPdepNrfzIkY_LqVIlpXdEV\" recaptcha_secret_key=\"6LdYELwrAAAAAAdPCbASTvJQXe9gRp2tRekxcR7h\" sticky_enabled=\"0\" email=\"info@bc3co.com\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Contact','','publish','closed','closed','','contact','','','2025-09-02 23:18:45','2025-09-02 23:18:45','',0,'https://jestley.com/?page_id=12',0,'page','',0),
(13,1,'2025-09-02 18:52:51','2025-09-02 18:52:51',' ','','','publish','closed','closed','','13','','','2025-09-02 18:52:51','2025-09-02 18:52:51','',0,'https://jestley.com/2025/09/02/13/',4,'nav_menu_item','',0),
(14,1,'2025-09-02 18:52:53','2025-09-02 18:52:53','','freelancer-09b','','inherit','open','closed','','freelancer-09b','','','2025-09-02 18:52:53','2025-09-02 18:52:53','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-09b.jpg',0,'attachment','image/jpeg',0),
(15,1,'2025-09-02 18:52:53','2025-09-02 18:52:53','','wireframe','','inherit','open','closed','','wireframe','','','2025-09-02 18:52:53','2025-09-02 18:52:53','',0,'https://jestley.com/wp-content/uploads/2025/09/wireframe.png',0,'attachment','image/png',0),
(16,1,'2025-09-02 18:52:53','2025-09-02 18:52:53','','freelancer-07b','','inherit','open','closed','','freelancer-07b','','','2025-09-02 18:52:53','2025-09-02 18:52:53','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-07b.jpg',0,'attachment','image/jpeg',0),
(17,1,'2025-09-02 18:52:54','2025-09-02 18:52:54','','freelancer-01','','inherit','open','closed','','freelancer-01','','','2025-09-02 18:52:54','2025-09-02 18:52:54','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-01.jpg',0,'attachment','image/jpeg',0),
(18,1,'2025-09-02 18:52:54','2025-09-02 18:52:54','','freelancer-02','','inherit','open','closed','','freelancer-02','','','2025-09-02 18:52:54','2025-09-02 18:52:54','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-02.jpg',0,'attachment','image/jpeg',0),
(19,1,'2025-09-02 18:52:56','2025-09-02 18:52:56','','freelancer-09','','inherit','open','closed','','freelancer-09','','','2025-09-02 18:52:56','2025-09-02 18:52:56','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-09.jpg',0,'attachment','image/jpeg',0),
(20,1,'2025-09-02 18:52:57','2025-09-02 18:52:57','','freelancer-03','','inherit','open','closed','','freelancer-03','','','2025-09-02 18:52:57','2025-09-02 18:52:57','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-03.jpg',0,'attachment','image/jpeg',0),
(21,1,'2025-09-02 18:52:57','2025-09-02 18:52:57','','logo_03-dark','','inherit','open','closed','','logo_03-dark','','','2025-09-02 18:52:57','2025-09-02 18:52:57','',0,'https://jestley.com/wp-content/uploads/2025/09/logo_03-dark.png',0,'attachment','image/png',0),
(22,1,'2025-09-02 18:52:57','2025-09-02 18:52:57','','logo_08-dark','','inherit','open','closed','','logo_08-dark','','','2025-09-02 18:52:57','2025-09-02 18:52:57','',0,'https://jestley.com/wp-content/uploads/2025/09/logo_08-dark.png',0,'attachment','image/png',0),
(23,1,'2025-09-02 18:52:57','2025-09-02 18:52:57','','logo_05-dark','','inherit','open','closed','','logo_05-dark','','','2025-09-02 18:52:57','2025-09-02 18:52:57','',0,'https://jestley.com/wp-content/uploads/2025/09/logo_05-dark.png',0,'attachment','image/png',0),
(24,1,'2025-09-02 18:52:57','2025-09-02 18:52:57','','logo_02-dark','','inherit','open','closed','','logo_02-dark','','','2025-09-02 18:52:57','2025-09-02 18:52:57','',0,'https://jestley.com/wp-content/uploads/2025/09/logo_02-dark.png',0,'attachment','image/png',0),
(25,1,'2025-09-02 18:52:59','2025-09-02 18:52:59','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-09.jpg\" title_text=\"freelancer-09\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" width=\"80px\" hover_enabled=\"0\" border_radii=\"on|60px|60px|60px|60px\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"Hello, I\'m Sarah\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_align=\"center\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"@sarahsdesigns\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" title_text_align=\"center\" title_text_color=\"gcid-primary-color\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>Hi, I’m Sarah—a passionate designer and developer dedicated to crafting custom digital experiences that leave a lasting impact. With a blend of creativity, technical expertise, and an eye for detail, I turn ideas into meaningful, functional designs that resonate with audiences. From an early age, I’ve been fascinated by the intersection of design and technology. This curiosity led me to explore the world of web design and development, where I discovered my ability to merge artistic vision with technical problem-solving. Over the years, I’ve honed my skills to create tailored solutions for clients who value thoughtful design and seamless functionality. Whether it’s building a fully responsive website from scratch, transforming static designs into dynamic, interactive platforms, or collaborating on innovative custom projects, my mission is always the same: to deliver work that not only meets but exceeds expectations. I take pride in paying attention to every detail, ensuring that each project is a true reflection of the client’s vision and goals.</p>\n<p>Beyond the screen, I’m constantly inspired by the world around me—whether it’s the clean lines of modern architecture, the storytelling of great films, or the innovative ideas of fellow creators. I believe that great design isn’t just about aesthetics; it’s about creating experiences that connect and communicate. When I’m not busy designing or coding, you’ll likely find me sketching out new ideas, exploring the latest design trends, or tinkering with tools and technologies to push my craft even further. I’m also a firm believer in collaboration and love working closely with clients to bring their unique visions to life. Let’s create something amazing together. Whether you’re looking for a website that makes an unforgettable first impression or need a creative partner for your next big project, I’d love to hear your story and see how I can help make your ideas a reality.</p>[/et_pb_text][et_pb_button button_text=\"Contact Me\" button_alignment=\"center\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Clients\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Some brands I\'ve worked with\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/logo_03-dark.png\" title_text=\"logo_03-dark\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/logo_08-dark.png\" title_text=\"logo_08-dark\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/logo_05-dark.png\" title_text=\"logo_05-dark\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/logo_02-dark.png\" title_text=\"logo_02-dark\" align=\"center\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skills\" _builder_version=\"4.27.3\" _module_preset=\"362ada36-891f-4be2-b115-0ee19aadf10c\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Skills and Expertise\" _builder_version=\"4.27.3\" _module_preset=\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"The Expertise Behind Every Successful Project\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"Learn More\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"User Experience (UX) Design\" icon_placement=\"top\" _builder_version=\"4.27.3\" _module_preset=\"b8ea676a-bda4-461b-8fe0-8f1979a72473\" custom_padding=\"||30px||false|false\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\"]<p>Creating intuitive and engaging user experiences is at the core of what I do.<br />I specialize in researching user needs, developing wireframes, and designing user journeys that align with business goals.</p>[/et_pb_blurb][et_pb_blurb title=\"Front-End Web Development\" icon_placement=\"top\" _builder_version=\"4.27.3\" _module_preset=\"b8ea676a-bda4-461b-8fe0-8f1979a72473\" custom_padding=\"||30px||false|false\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\"]<p>With a deep understanding of HTML, CSS, JavaScript, and responsive design principles, I bring designs to life with clean, efficient code. From dynamic single-page applications to fully interactive websites fast, scalable, and SEO-friendly.</p>[/et_pb_blurb][et_pb_blurb title=\"Brand Identity and Visual Design\" icon_placement=\"top\" _builder_version=\"4.27.3\" _module_preset=\"b8ea676a-bda4-461b-8fe0-8f1979a72473\" custom_padding=\"||30px||false|false\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\"]<p>I help businesses establish strong, memorable brands by creating unique logos, style guides, and visual assets. My approach to brand identity design ensures consistency across digital and print media.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','8-revision-v1','','','2025-09-02 18:52:59','2025-09-02 18:52:59','',8,'https://jestley.com/?p=25',0,'revision','',0),
(26,1,'2025-09-02 18:53:01','2025-09-02 18:53:01','','freelancer-10','','inherit','open','closed','','freelancer-10','','','2025-09-02 18:53:01','2025-09-02 18:53:01','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-10.jpg',0,'attachment','image/jpeg',0),
(27,1,'2025-09-02 18:53:01','2025-09-02 18:53:01','','freelancer-05','','inherit','open','closed','','freelancer-05','','','2025-09-02 18:53:01','2025-09-02 18:53:01','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-05.jpg',0,'attachment','image/jpeg',0),
(28,1,'2025-09-02 18:53:02','2025-09-02 18:53:02','','freelancer-21b','','inherit','open','closed','','freelancer-21b','','','2025-09-02 18:53:02','2025-09-02 18:53:02','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-21b.jpg',0,'attachment','image/jpeg',0),
(29,1,'2025-09-02 18:53:02','2025-09-02 18:53:02','','freelancer-14','','inherit','open','closed','','freelancer-14','','','2025-09-02 18:53:02','2025-09-02 18:53:02','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-14.jpg',0,'attachment','image/jpeg',0),
(30,1,'2025-09-02 18:53:02','2025-09-02 18:53:02','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"10%||||false|false\" custom_padding_tablet=\"0%||||false|false\" custom_padding_phone=\"0%||||false|false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Hello, I\'m Sarah\" _builder_version=\"4.27.3\" _module_preset=\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Designer & Developer Crafting Custom Experiences\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Portfolio\" _builder_version=\"4.27.3\" _module_preset=\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-09b.jpg\" title_text=\"freelancer-09b\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"About Me\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Hello! I’m Sarah, a digital marketing strategist based in Berlin with over a decade of industry expertise. I’m passionate about leveraging online platforms to solve business challenges effectively.  I’d love to collaborate on your next project!\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"@sarahsdesigns\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_color=\"gcid-primary-color\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_button button_text=\"More About Me\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"4.27.3\" _module_preset=\"362ada36-891f-4be2-b115-0ee19aadf10c\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"How I Can Help You\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>01.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Strategy\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]02.[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Creative Content\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]03.[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Graphic Design\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]04.[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"SEO Services\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,3_5,1_5\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" border_color_all=\"#FFFFFF\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]05.[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|30px||30px|false|true\" custom_padding_tablet=\"10px|0px|10px|0px|true|true\" custom_padding_phone=\"|0px||0px|false|true\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Marketing\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"20px||||false|false\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"Learn More\" button_alignment=\"right\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"4.27.3\" _module_preset=\"362ada36-891f-4be2-b115-0ee19aadf10c\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"||10px||false|false\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.27.3\" _module_preset=\"aa81cf7c-a285-4ec6-85e0-66a5153af803\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{}\"][et_pb_heading title=\"Full Website Design + Build\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>From the initial concept to the final launch, Sarah handles every aspect of website creation. This service includes designing a visually compelling layout, developing a fully functional site, and ensuring it\'s optimized for both performance and usability. </p>[/et_pb_text][et_pb_button button_text=\"View Case Studies\" _builder_version=\"4.27.3\" _module_preset=\"7e7b89b3-98b4-4356-bb8b-5a58051e3517\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{%22gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e%22:%91%22background_color%22%93}\"][et_pb_heading title=\"Design -> Live\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_color=\"gcid-primary-color\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>Turn your vision into reality with pixel-perfect precision. By leveraging her development expertise, she ensures your design is implemented flawlessly, with responsive functionality </p>[/et_pb_text][et_pb_button button_text=\"How It Works\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{%22gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e%22:%91%22background_color%22%93}\"][et_pb_heading title=\"Wireframing & Prototyping\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_color=\"#FFFFFF\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"]<p>With wireframing and prototyping services, Sarah helps map out the structure and user flow of your website or application. The process includes creating detailed wireframes and interactive prototypes, giving you a clear vision of how the final product will function. </p>[/et_pb_text][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/wireframe.png\" title_text=\"wireframe\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_text=\"Learn More\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"b5edf337-8668-40e4-b1d5-1a9fdc96bafa\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{%22gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e%22:%91%22background_color%22%93}\"][et_pb_heading title=\"On-going Monthly Support\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_color=\"#FFFFFF\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|gcid-primary-color 60%|#ffffff 100%\" height=\"16px\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22background_color_gradient_stops%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"#ffffff 0%|gcid-primary-color 40%|rgba(255,255,255,0) 100%\" height=\"16px\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22background_color_gradient_stops%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|gcid-primary-color 60%|#ffffff 100%\" height=\"16px\" custom_margin=\"||30px||false|false\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22background_color_gradient_stops%22%93}\"][/et_pb_divider][et_pb_blurb title=\"Unlimited requets\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Average 24-48 hours in delivery\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Design Requests\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Monthly reports\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Monthly reports\" use_icon=\"on\" font_icon=\"&#x4e;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" custom_margin=\"||2px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_button button_text=\"View Packages\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" custom_margin=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"d0cbb859-06b9-439f-8115-bd412d324f57\" background_color_gradient_direction=\"145deg\" background_color_gradient_stops=\"gcid-1534a1c4-a552-4a65-b4a9-b27f401fce8e 35%|rgba(255,255,255,0) 100%\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-07b.jpg\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" global_colors_info=\"{}\"][et_pb_heading title=\"Custom Projects\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" title_text_color=\"#FFFFFF\" custom_margin=\"||-10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"]<p>Got something special in mind? Let\'s make it happen!</p>[/et_pb_text][et_pb_button button_text=\"Schedule A Call\" _builder_version=\"4.27.3\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" saved_tabs=\"all\" locked=\"off\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"#000000\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"#000000\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"#000000\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"#000000\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Case Studies\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Case Studies\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bold Vision to Reality\" use_icon=\"on\" font_icon=\"&#x26;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"12270984-f7d3-4488-99b8-09529e67403d\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-01.jpg\" link_option_url=\"#\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image__hover=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-01.jpg\" background_enable_image__hover=\"on\"]<p>Crafting a modern, user-centric website from start to finish. This case study showcases a complete design and build process, focusing on simplicity, creativity and elegance.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"Product Design\" use_icon=\"on\" font_icon=\"&#x26;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"12270984-f7d3-4488-99b8-09529e67403d\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-02.jpg\" link_option_url=\"#\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image__hover=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-02.jpg\" background_enable_image__hover=\"on\"]<p>Highlighting functionality through meticulous prototyping and elegant product presentation. This case study masterfully intertwines technical precision with captivating visual storytelling.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"Digital Experience\" use_icon=\"on\" font_icon=\"&#x26;||divi||400\" _builder_version=\"4.27.3\" _module_preset=\"12270984-f7d3-4488-99b8-09529e67403d\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-03.jpg\" link_option_url=\"#\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image__hover=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-03.jpg\" background_enable_image__hover=\"on\"]<p>Creating an engaging responsive design for tablet users is crucial in today\'s digital landscape. This case study highlights layouts that are both intuitive and optimized.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_button button_text=\"View All Work\" button_alignment=\"center\" _builder_version=\"4.27.3\" _module_preset=\"aea6612e-fe2b-464e-8d62-d5d38604b99c\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Why Work With Me\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Why Work With Me?\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding_tablet=\"||0px||false|false\" custom_padding_phone=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Professional Divi Partner\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" custom_margin=\"||10px||false|false\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" border_color_all=\"rgba(0,0,0,0.12)\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>As a certified Divi Partner, I possess expert-level knowledge of the Divi theme and its powerful features. This means I can build you a stunning, high-performing website with incredible speed and efficiency, saving you time and money while delivering exceptional results.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Award-Winning Design\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" custom_margin=\"||10px||false|false\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" border_color_all=\"rgba(0,0,0,0.12)\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>My designs have been recognized for their creativity, usability, and impact. When you work with me, you can be confident that your website will not only look amazing but also effectively communicate your brand message and drive results.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"10+ Years experience\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" custom_margin=\"||10px||false|false\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" border_color_all=\"rgba(0,0,0,0.12)\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>With over a decade of experience in the design and development industry, I have the skills and knowledge to tackle even the most complex projects. I\'ve honed my craft across diverse industries, delivering successful solutions for businesses of all sizes.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"24/7 Service available\" _builder_version=\"4.27.3\" _module_preset=\"0adaddf9-f1ec-4afa-9b24-b81c1384b572\" custom_margin=\"||10px||false|false\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" border_color_all=\"rgba(0,0,0,0.12)\" border_width_bottom=\"1px\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>Your satisfaction is my top priority. That\'s why I\'m available around the clock to answer your questions, address your concerns, and provide ongoing support. You can count on me to be there for you throughout the entire project lifecycle and beyond.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonials\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Client Testimonials\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"★★★★★\" _builder_version=\"4.27.3\" _module_preset=\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\" title_text_color=\"gcid-primary-color\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_testimonial author=\"Jessica L.\" job_title=\"Founder\" company_name=\"Bloom Skincare\" quote_icon=\"off\" _builder_version=\"4.27.3\" _module_preset=\"06782cea-834f-47b5-a6cf-b17122823fdb\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>\"Sarah has an incredible eye for design! She completely captured the essence of our brand and translated it into a website that is both beautiful and functional. We\'ve received so many compliments on the new look, and our online presence has never been stronger. Highly recommend!\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"★★★★★\" _builder_version=\"4.27.3\" _module_preset=\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\" title_text_color=\"gcid-primary-color\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_testimonial author=\"Mark S.\" job_title=\"CEO\" company_name=\"Tech Solutions Inc.\" quote_icon=\"off\" _builder_version=\"4.27.3\" _module_preset=\"06782cea-834f-47b5-a6cf-b17122823fdb\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>\"We had a very challenging project that required custom development and integration with third-party tools. Sarah\'s technical expertise was invaluable. She not only solved all the technical hurdles but also provided creative solutions that exceeded our expectations. We were truly impressed with her skills and dedication.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"★★★★★\" _builder_version=\"4.27.3\" _module_preset=\"9f97e203-9a1e-4c91-bdd7-092e80cc1ac1\" title_text_color=\"gcid-primary-color\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-primary-color%22:%91%22title_text_color%22%93}\"][/et_pb_heading][et_pb_testimonial author=\"Emily R.\" job_title=\"Marketing Director\" company_name=\"Extra Pvt Ltd\" quote_icon=\"off\" _builder_version=\"4.27.3\" _module_preset=\"06782cea-834f-47b5-a6cf-b17122823fdb\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>\"Working with Sarah was an absolute pleasure. She was incredibly responsive, communicative, and collaborative throughout the entire process. She took the time to truly understand our needs and made sure we were involved every step of the way. We felt like we had a true partner in bringing our vision to life.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','6-revision-v1','','','2025-09-02 18:53:02','2025-09-02 18:53:02','',6,'https://jestley.com/?p=30',0,'revision','',0),
(31,1,'2025-09-02 18:53:03','2025-09-02 18:53:03','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Portfolio\" _builder_version=\"4.27.3\" _module_preset=\"2eaa1252-fdfd-4d72-a52a-8e4c2a13c028\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"My Work\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|8%|||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-10.jpg\" title_text=\"freelancer-10\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"RedCarpet\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Crafted a complete visual identity for a luxury fashion brand including logo design, site design, and site development\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\"][/et_pb_button][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-05.jpg\" title_text=\"freelancer-05\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"Analytics Dashboard\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Focused on creating a visually appealing layout that makes complex metrics easy to understand at a glance.\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\" locked=\"off\"][/et_pb_button][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-21b.jpg\" title_text=\"freelancer-21b\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"Website Template\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Designed a versatile website template for small businesses looking to establish a strong online presence.\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\" locked=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|8%|||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-03.jpg\" title_text=\"freelancer-03\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf%22:%91%22hover_overlay_color%22%93}\"][/et_pb_image][et_pb_heading title=\"Mobile App\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Balanced minimalism with functionality, using clean layouts and contrasting colors to guide users intuitively through features like budgeting and expense tracking.\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\" locked=\"off\"][/et_pb_button][et_pb_image src=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-14.jpg\" title_text=\"freelancer-14\" show_in_lightbox=\"on\" _builder_version=\"4.27.3\" _module_preset=\"b01c845f-39f9-4f44-9643-e98852a8859f\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][et_pb_heading title=\"Meetup Event Branding\" _builder_version=\"4.27.3\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"The design captures a friendly, inclusive vibe with bold typography, playful illustrations, and a focus on usability. \" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" custom_margin=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_button button_text=\"View Project\" _builder_version=\"4.27.3\" _module_preset=\"a73c943d-6a1f-496b-b1fa-a75c17aa4a8e\" custom_margin=\"||100px||false|false\" hover_enabled=\"0\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio','','inherit','closed','closed','','10-revision-v1','','','2025-09-02 18:53:03','2025-09-02 18:53:03','',10,'https://jestley.com/?p=31',0,'revision','',0),
(32,1,'2025-09-02 18:53:05','2025-09-02 18:53:05','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" max_width=\"800px\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Get In Touch\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" custom_margin=\"||20px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>Ready to bring your vision to life? Whether you have a specific project in mind or just want to explore ideas, I’d love to hear from you. Let’s create something amazing together—drop me a message today!</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Phone\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p>(255) 352-6258</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Email\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"]<p><a href=\"mailto:#\">hello@divifreelancer.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" _builder_version=\"4.27.3\" _module_preset=\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\" _unique_id=\"7d3f7312-daf8-4e83-9286-090e80bdc079\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Contact','','inherit','closed','closed','','12-revision-v1','','','2025-09-02 18:53:05','2025-09-02 18:53:05','',12,'https://jestley.com/?p=32',0,'revision','',0),
(33,1,'2025-09-02 18:53:08','2025-09-02 18:53:08','[et_pb_section fb_built=\"1\" admin_label=\"Header Info\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\" theme_builder_area=\"et_header_layout\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"8px||8px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"8px||||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.27.4\" _module_preset=\"30b0cf31-fbc5-465c-beb7-b33ed988449b\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"]<p>Based in Kelowna, Serving the world...</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"8px||||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_social_media_follow _builder_version=\"4.27.3\" _module_preset=\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\" text_orientation=\"right\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#3b5998\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" 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.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" follow_button=\"off\" url_new_window=\"on\"]X[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#ea2c59\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"behance\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#0057ff\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" follow_button=\"off\" url_new_window=\"on\"]behance[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"dribbble\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#ea4c8d\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" follow_button=\"off\" url_new_window=\"on\"]dribbble[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Header Menu\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row column_structure=\"3_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"16px||16px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"3_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu _builder_version=\"4.27.3\" _module_preset=\"2f5866e6-af49-45da-b348-5238319c6f8b\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"8px|||20px|false|false\" custom_padding_tablet=\"8px|||0px|false|false\" custom_padding_phone=\"8px|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_button button_text=\"Schedule Call\" button_alignment=\"right\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout','','','2025-09-02 23:18:45','2025-09-02 23:18:45','',0,'https://jestley.com/et_header_layout/theme-builder-layout/',0,'et_header_layout','',0),
(34,1,'2025-09-02 18:53:09','2025-09-02 18:53:09','','freelancer-04','','inherit','open','closed','','freelancer-04','','','2025-09-02 18:53:09','2025-09-02 18:53:09','',0,'https://jestley.com/wp-content/uploads/2025/09/freelancer-04.jpg',0,'attachment','image/jpeg',0),
(35,1,'2025-09-02 18:53:11','2025-09-02 18:53:11','[et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.27.3\" _module_preset=\"64731693-a92a-40b4-9e40-0874d41d58f6\" background_color_gradient_stops=\"#000000 10%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-04.jpg\" collapsed=\"on\" theme_builder_area=\"et_footer_layout\"][et_pb_row column_structure=\"3_4,1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"3_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_blurb title=\"I\'m available For Work\" use_icon=\"on\" font_icon=\"&#x5c;||divi||400\" icon_color=\"gcid-primary-color\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" image_icon_custom_margin=\"||||false|false\" image_icon_custom_padding=\"||||false|false\" animation_style=\"fade\" animation_duration=\"2000ms\" animation_repeat=\"loop\" global_colors_info=\"{%22gcid-primary-color%22:%91%22icon_color%22%93}\" theme_builder_area=\"et_footer_layout\" custom_padding=\"3px|||||\"][/et_pb_blurb][et_pb_heading title=\"Want to talk about your next project?\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|desktop\" link_text_color__hover=\"#E02B20\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">Home</a>[/et_pb_text][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover=\"#E02B20\" link_text_color__hover_enabled=\"on|desktop\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover=\"#E02B20\" link_text_color__hover_enabled=\"on|desktop\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">Project</a>[/et_pb_text][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover=\"#E02B20\" link_text_color__hover_enabled=\"on|desktop\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">Portfolio</a>[/et_pb_text][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover=\"#E02B20\" link_text_color__hover_enabled=\"on|desktop\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">Blog</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"6vw||6vw||true|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_heading title=\"Let\'s Make It Happen\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" title_font_size=\"7vw\" title_line_height=\"1.2em\" custom_margin=\"||20px||false|false\" title_font_size_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_heading][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_button button_text=\"info@bc3co.com\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.4\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" button_use_icon=\"off\" custom_padding=\"6px|24px|6px|24px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" button_url=\"mailto:info@bc3co.com\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|20px||20px|false|true\" custom_padding_tablet=\"|20px||20px|false|true\" custom_padding_phone=\"10px|0px||0px|false|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_button button_text=\"(778) 581.0522\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.4\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" button_use_icon=\"off\" custom_padding=\"6px|24px|6px|24px|true|true\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"||||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_social_media_follow _builder_version=\"4.27.3\" _module_preset=\"c8d5b2aa-c955-470e-ae32-005f9e1e409b\" text_orientation=\"right\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#3b5998\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" 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.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" follow_button=\"off\" url_new_window=\"on\"]X[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#ea2c59\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" 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]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout','','','2025-09-02 23:18:45','2025-09-02 23:18:45','',0,'https://jestley.com/et_footer_layout/theme-builder-layout/',0,'et_footer_layout','',0),
(36,1,'2025-09-02 18:53:12','2025-09-02 18:53:12','[et_pb_section fb_built=\"1\" admin_label=\"Post\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_post_title featured_image=\"off\" _builder_version=\"4.26.0\" _module_preset=\"c68f38c1-9349-4ebc-af88-a682ca890d94\" text_orientation=\"center\" hover_enabled=\"0\"][/et_pb_post_title][et_pb_image src=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9mZWF0dXJlZF9pbWFnZSIsInNldHRpbmdzIjp7fX0=@\" force_fullwidth=\"on\" _builder_version=\"4.26.0\" _dynamic_attributes=\"src\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"5eed47bd-1ab1-47bd-9483-0814320c162b\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_post_content _builder_version=\"4.27.3\" _module_preset=\"default\" ul_line_height=\"1.8em\" ol_line_height=\"1.8em\" quote_font=\"--et_global_heading_font|--et_global_heading_font_weight|||||||\" quote_text_color=\"gcid-primary-color\" quote_font_size=\"30px\" quote_line_height=\"1.4em\" header_font_size=\"72px\" header_line_height=\"1.3em\" header_2_font_size=\"52px\" header_2_line_height=\"1.3em\" header_3_font_size=\"38px\" header_3_line_height=\"1.4em\" header_4_font_size=\"30px\" header_4_line_height=\"1.4em\" header_5_font_size=\"24px\" header_5_line_height=\"1.4em\" header_6_font_size=\"19px\" header_6_line_height=\"1.4em\" text_orientation=\"left\" hover_enabled=\"0\" quote_font_size_tablet=\"24px\" quote_font_size_phone=\"19px\" quote_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"44px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\" header_2_font_size_tablet=\"36px\" header_2_font_size_phone=\"26px\" header_2_font_size_last_edited=\"on|phone\" header_3_font_size_tablet=\"29px\" header_3_font_size_phone=\"22px\" header_3_font_size_last_edited=\"on|phone\" header_4_font_size_tablet=\"24px\" header_4_font_size_phone=\"19px\" header_4_font_size_last_edited=\"on|phone\" header_5_font_size_tablet=\"20px\" header_5_font_size_phone=\"17px\" header_5_font_size_last_edited=\"on|phone\" header_6_font_size_tablet=\"17px\" header_6_font_size_phone=\"15px\" header_6_font_size_last_edited=\"on|desktop\" global_colors_info=\"{%22gcid-primary-color%22:%91%22quote_text_color%22,%22quote_text_color%22%93}\"][/et_pb_post_content][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_post_nav _builder_version=\"4.26.0\" _module_preset=\"3c9f1d13-e8d3-44ac-8729-bf83be6d3bfa\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_post_nav][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Post Author\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blurb title=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3IiLCJzZXR0aW5ncyI6eyJiZWZvcmUiOiJXcml0dGVuIGJ5ICIsImFmdGVyIjoiIiwibmFtZV9mb3JtYXQiOiJmaXJzdF9sYXN0X25hbWUiLCJsaW5rIjoib2ZmIiwibGlua19kZXN0aW5hdGlvbiI6ImF1dGhvcl9hcmNoaXZlIn19@\" image=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3JfcHJvZmlsZV9waWN0dXJlIiwic2V0dGluZ3MiOnt9fQ==@\" icon_placement_tablet=\"left\" icon_placement_phone=\"top\" icon_placement_last_edited=\"on|phone\" _builder_version=\"4.26.0\" _dynamic_attributes=\"title,content,image\" _module_preset=\"85dddc95-cbbb-40f1-ab29-d8d99aa2e8e4\" hover_enabled=\"0\" border_radii_image=\"on|200px|200px|200px|200px\" global_colors_info=\"{}\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3JfYmlvIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiIiwiYWZ0ZXIiOiIifX0=@[/et_pb_blurb][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3JfdXJsIiwic2V0dGluZ3MiOnt9fQ==@\" button_text=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3IiLCJzZXR0aW5ncyI6eyJiZWZvcmUiOiJNb3JlIFBvc3RzIGJ5ICIsImFmdGVyIjoiIiwibmFtZV9mb3JtYXQiOiJmaXJzdF9uYW1lIiwibGluayI6Im9mZiIsImxpbmtfZGVzdGluYXRpb24iOiJhdXRob3JfYXJjaGl2ZSJ9fQ==@\" _builder_version=\"4.26.0\" _dynamic_attributes=\"button_text,button_url\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" custom_margin=\"|||80px|false|false\" custom_margin_tablet=\"|||80px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Related Posts\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"Related Posts\" _builder_version=\"4.26.0\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_blog posts_number=\"3\" include_categories=\"current\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"4.26.0\" _module_preset=\"b5c733e5-3269-497f-9570-54d5991f3824\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Post Comments\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_comments _builder_version=\"4.26.0\" _module_preset=\"c3cbd5b5-1641-44e1-9c8c-b546c340cf55\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_comments][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout','','','2025-09-02 18:53:12','2025-09-02 18:53:12','',0,'https://jestley.com/et_body_layout/theme-builder-layout/',0,'et_body_layout','',0),
(37,1,'2025-09-02 18:53:14','2025-09-02 18:53:14','[et_pb_section fb_built=\"1\" admin_label=\"Category\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF90aXRsZSIsInNldHRpbmdzIjp7ImJlZm9yZSI6IiIsImFmdGVyIjoiIn19@\" _builder_version=\"4.26.0\" _dynamic_attributes=\"title\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_blog posts_number=\"6\" include_categories=\"current\" offset_number=\"0\" _builder_version=\"4.26.0\" _module_preset=\"b5c733e5-3269-497f-9570-54d5991f3824\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-2','','','2025-09-02 18:53:14','2025-09-02 18:53:14','',0,'https://jestley.com/et_body_layout/theme-builder-layout-2/',0,'et_body_layout','',0),
(38,1,'2025-09-02 18:53:15','2025-09-02 18:53:15','[et_pb_section fb_built=\"1\" admin_label=\"Author\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_image src=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3JfcHJvZmlsZV9waWN0dXJlIiwic2V0dGluZ3MiOnt9fQ==@\" align=\"right\" align_tablet=\"left\" align_phone=\"left\" align_last_edited=\"on|tablet\" _builder_version=\"4.27.3\" _dynamic_attributes=\"src\" _module_preset=\"default\" hover_enabled=\"0\" border_radii=\"on|200px|200px|200px|200px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3IiLCJzZXR0aW5ncyI6eyJiZWZvcmUiOiIiLCJhZnRlciI6IiIsIm5hbWVfZm9ybWF0IjoiZmlyc3RfbGFzdF9uYW1lIiwibGluayI6Im9mZiIsImxpbmtfZGVzdGluYXRpb24iOiJhdXRob3JfYXJjaGl2ZSJ9fQ==@\" _builder_version=\"4.27.3\" _dynamic_attributes=\"title\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_level=\"h1\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _dynamic_attributes=\"content\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" hover_enabled=\"0\" global_colors_info=\"{}\"]@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3JfYmlvIiwic2V0dGluZ3MiOnsiYmVmb3JlIjoiIiwiYWZ0ZXIiOiIifX0=@[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Author Posts\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9hdXRob3IiLCJzZXR0aW5ncyI6eyJiZWZvcmUiOiJQb3N0cyBieSAiLCJhZnRlciI6IiIsIm5hbWVfZm9ybWF0IjoiZmlyc3RfbmFtZSIsImxpbmsiOiJvZmYiLCJsaW5rX2Rlc3RpbmF0aW9uIjoiYXV0aG9yX2FyY2hpdmUifX0=@\" _builder_version=\"4.27.3\" _dynamic_attributes=\"title\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_blog use_current_loop=\"on\" posts_number=\"3\" offset_number=\"0\" _builder_version=\"4.26.0\" _module_preset=\"b5c733e5-3269-497f-9570-54d5991f3824\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-3','','','2025-09-02 18:53:15','2025-09-02 18:53:15','',0,'https://jestley.com/et_body_layout/theme-builder-layout-3/',0,'et_body_layout','',0),
(39,1,'2025-09-02 18:53:16','2025-09-02 18:53:16','[et_pb_section fb_built=\"1\" admin_label=\"Product\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.26.0\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_cart_notice _builder_version=\"4.26.0\" _module_preset=\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"0.0.0.0\" /][et_pb_wc_breadcrumb _builder_version=\"4.26.0\" _module_preset=\"0f3d1cc4-8315-49a7-af2e-22ffae4ecc65\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"1\" _address=\"0.0.0.1\" /][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_title _builder_version=\"4.26.0\" _module_preset=\"7d135913-e934-4894-91c3-7ff78bb6bf2d\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"0.1.0.0\" /][et_pb_wc_rating _builder_version=\"4.26.0\" _module_preset=\"1020931a-6660-4e63-837c-8506c613e23b\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"1\" _address=\"0.1.0.1\" /][et_pb_wc_description _builder_version=\"4.26.0\" _module_preset=\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"2\" _address=\"0.1.0.2\" /][et_pb_wc_price _builder_version=\"4.26.0\" _module_preset=\"f1d6c355-d894-4336-bde7-85edd4cc91e8\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"3\" _address=\"0.1.0.3\" /][et_pb_wc_add_to_cart _builder_version=\"4.26.0\" _module_preset=\"776cb20d-e963-44b9-b534-c0bf6fcb39b5\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"4\" _address=\"0.1.0.4\" /][et_pb_wc_meta _builder_version=\"4.26.0\" _module_preset=\"3bdfc43e-931e-4cfd-a1fb-237f6be88a38\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"5\" _address=\"0.1.0.5\" /][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_images _builder_version=\"4.26.0\" _module_preset=\"1952e3e4-e4c3-484a-b684-634695f4677b\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"0.1.1.0\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_description description_type=\"description\" _builder_version=\"4.26.0\" _module_preset=\"2231cbc7-324b-44a7-bf6a-ec31e8f04948\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"0.2.0.0\" /][et_pb_wc_additional_info show_title=\"off\" _builder_version=\"4.26.0\" _module_preset=\"03acf18e-9fe3-44ea-a4a3-a62e11dad3f6\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"1\" _address=\"0.2.0.1\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_related_products include_categories=\"current\" _builder_version=\"4.26.0\" _module_preset=\"fa9a40c6-66cd-4dc8-83a7-15e3e0fda92c\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"0.3.0.0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product Reviews\" _builder_version=\"4.27.3\" _module_preset=\"362ada36-891f-4be2-b115-0ee19aadf10c\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_reviews _builder_version=\"4.27.3\" _module_preset=\"a8191bd4-7afd-4a27-861f-ae38f8ce63ff\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"1.0.0.0\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-4','','','2025-09-02 18:53:16','2025-09-02 18:53:16','',0,'https://jestley.com/et_body_layout/theme-builder-layout-4/',0,'et_body_layout','',0),
(40,1,'2025-09-02 18:53:17','2025-09-02 18:53:17','[et_pb_section fb_built=\"1\" admin_label=\"Cart\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF90aXRsZSIsInNldHRpbmdzIjp7ImJlZm9yZSI6IiIsImFmdGVyIjoiIn19@\" _builder_version=\"4.26.0\" _dynamic_attributes=\"title\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_wc_cart_notice _builder_version=\"4.26.0\" _module_preset=\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"1\" _address=\"0.0.0.1\" /][et_pb_wc_cart_products _builder_version=\"4.27.3\" _module_preset=\"67b57bd1-5668-4def-9a21-bb15c0f16d24\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"2\" _address=\"0.0.0.2\" /][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_cart_totals _builder_version=\"4.27.3\" _module_preset=\"f20c05a4-0487-4f8e-b24f-261076d3acb3\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"0.1.1.0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-5','','','2025-09-02 18:53:17','2025-09-02 18:53:17','',0,'https://jestley.com/et_body_layout/theme-builder-layout-5/',0,'et_body_layout','',0),
(41,1,'2025-09-02 18:53:18','2025-09-02 18:53:18','[et_pb_section fb_built=\"1\" admin_label=\"Checkout\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"||0px||false|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF90aXRsZSIsInNldHRpbmdzIjp7ImJlZm9yZSI6IiIsImFmdGVyIjoiIn19@\" _builder_version=\"4.26.0\" _dynamic_attributes=\"title\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_wc_cart_notice _builder_version=\"4.27.3\" _module_preset=\"840bff0d-6c13-4ddf-a08c-7b1fcea3d09b\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"1\" _address=\"0.0.0.1\" /][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_checkout_billing _builder_version=\"4.26.0\" _module_preset=\"555fe2b5-ed7c-471a-b36c-d0237aa518c3\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"0.1.0.0\" /][et_pb_wc_checkout_shipping _builder_version=\"4.26.0\" _module_preset=\"8687a5a7-6b2e-4471-a2b0-740665641f8e\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"1\" _address=\"0.1.0.1\" /][et_pb_wc_checkout_additional_info _builder_version=\"4.26.0\" _module_preset=\"cc2f6e6f-87c5-4c67-98cb-823acf93da1e\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"2\" _address=\"0.1.0.2\" /][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"b1f5171c-6eeb-4dee-972d-2f4897728bba\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_wc_checkout_order_details _builder_version=\"4.27.3\" _module_preset=\"8a28b75d-be0b-46f0-b7a3-405f1264bfd9\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"0\" _address=\"0.1.1.0\" /][et_pb_wc_checkout_payment_info _builder_version=\"4.27.3\" _module_preset=\"239f7700-2611-4422-85b4-5ce1c7714740\" global_colors_info=\"{}\" theme_builder_area=\"et_body_layout\" _i=\"1\" _address=\"0.1.1.1\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-6','','','2025-09-02 18:53:18','2025-09-02 18:53:18','',0,'https://jestley.com/et_body_layout/theme-builder-layout-6/',0,'et_body_layout','',0),
(42,1,'2025-09-02 18:53:20','2025-09-02 18:53:20','[et_pb_section fb_built=\"1\" admin_label=\"Search\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF90aXRsZSIsInNldHRpbmdzIjp7ImJlZm9yZSI6IiIsImFmdGVyIjoiIn19@\" _builder_version=\"4.26.0\" _dynamic_attributes=\"title\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_search show_button=\"off\" placeholder=\"Refine Your Search\" _builder_version=\"4.27.3\" _module_preset=\"ca2a72e9-24b8-4a3a-a793-e003f712718c\" max_width=\"700px\" module_alignment=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_search][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.25.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_blog use_current_loop=\"on\" posts_number=\"9\" show_thumbnail=\"off\" show_more=\"off\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"4.27.3\" _module_preset=\"16c411e2-07e5-41c0-bfea-c03f4cf94cb5\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" hover_enabled=\"0\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-7','','','2025-09-02 18:53:20','2025-09-02 18:53:20','',0,'https://jestley.com/et_body_layout/theme-builder-layout-7/',0,'et_body_layout','',0),
(43,1,'2025-09-02 18:53:21','2025-09-02 18:53:21','[et_pb_section fb_built=\"1\" admin_label=\"404\" _builder_version=\"4.27.3\" _module_preset=\"default\" min_height=\"100vh\" custom_padding=\"10vw||10vw||true|false\" hover_enabled=\"0\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\"][et_pb_heading title=\"404\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" title_font_size=\"12vw\" hover_enabled=\"0\" title_font_size_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_heading title=\"Page Not Found!\" _builder_version=\"4.26.0\" _module_preset=\"7dc66019-4936-4070-a021-04afee121534\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" custom_margin=\"||30px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\"]Sorry, the page you\'re looking for is not available.[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoiaG9tZV91cmwiLCJzZXR0aW5ncyI6e319@\" button_text=\"Back to Home\" button_alignment=\"center\" _builder_version=\"4.27.3\" _dynamic_attributes=\"button_url\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-8','','','2025-09-02 18:53:21','2025-09-02 18:53:21','',0,'https://jestley.com/et_body_layout/theme-builder-layout-8/',0,'et_body_layout','',0),
(44,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','Theme Builder','','publish','closed','closed','','theme-builder','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_theme_builder/theme-builder/',0,'et_theme_builder','',0),
(45,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','Default Website Template','','publish','closed','closed','','default-website-template','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/default-website-template/',0,'et_template','',0),
(46,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','All Posts','','publish','closed','closed','','all-posts','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/all-posts/',0,'et_template','',0),
(47,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','All Category Pages','','publish','closed','closed','','all-category-pages','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/all-category-pages/',0,'et_template','',0),
(48,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','All Author Pages','','publish','closed','closed','','all-author-pages','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/all-author-pages/',0,'et_template','',0),
(49,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','Unassigned','','publish','closed','closed','','unassigned','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/unassigned/',0,'et_template','',0),
(50,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','Unassigned','','publish','closed','closed','','unassigned-2','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/unassigned-2/',0,'et_template','',0),
(51,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','Unassigned','','publish','closed','closed','','unassigned-3','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/unassigned-3/',0,'et_template','',0),
(52,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','Search Results','','publish','closed','closed','','search-results','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/search-results/',0,'et_template','',0),
(53,1,'2025-09-02 18:53:27','2025-09-02 18:53:27','','404 Page','','publish','closed','closed','','404-page','','','2025-09-02 18:53:27','2025-09-02 18:53:27','',0,'https://jestley.com/et_template/404-page/',0,'et_template','',0),
(54,1,'2025-09-02 18:53:31','2025-09-02 18:53:31','','Divi','','publish','closed','closed','','divi','','','2025-09-02 22:58:53','2025-09-02 22:58:53','',0,'https://jestley.com/2025/09/02/divi/',0,'custom_css','',0),
(55,1,'2025-09-02 18:53:31','2025-09-02 18:53:31','','Divi','','inherit','closed','closed','','54-revision-v1','','','2025-09-02 18:53:31','2025-09-02 18:53:31','',54,'https://jestley.com/?p=55',0,'revision','',0),
(56,1,'2025-09-02 22:58:16','2025-09-02 22:58:16','','BC3Co','','inherit','open','closed','','bc3co','','','2025-09-02 22:58:16','2025-09-02 22:58:16','',0,'https://jestley.com/wp-content/uploads/2025/09/BC3Co.png',0,'attachment','image/png',0),
(57,1,'2025-09-02 23:16:13','2025-09-02 23:16:13','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" max_width=\"800px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Get In Touch\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>Ready to bring your vision to life? Whether you have a specific project in mind or just want to explore ideas, I’d love to hear from you. Let’s create something amazing together—drop me a message today!</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Phone\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.4\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>778 581 0522</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Email\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.4\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>chase@BC3Co.com</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.27.4\" _module_preset=\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\" _unique_id=\"7d3f7312-daf8-4e83-9286-090e80bdc079\" hover_enabled=\"0\" global_colors_info=\"{}\" use_spam_service=\"on\" recaptcha_list=\"add_new_account\" recaptcha_account_name=\"BC3Co\" recaptcha_site_key=\"6LdYELwrAAAAAJI_foPdepNrfzIkY_LqVIlpXdEV\" recaptcha_secret_key=\"6LdYELwrAAAAAAdPCbASTvJQXe9gRp2tRekxcR7h\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Contact','','inherit','closed','closed','','12-revision-v1','','','2025-09-02 23:16:13','2025-09-02 23:16:13','',12,'https://jestley.com/?p=57',0,'revision','',0),
(58,1,'2025-09-02 23:16:13','2025-09-02 23:16:13','[et_pb_section fb_built=\"1\" admin_label=\"Header Info\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\" theme_builder_area=\"et_header_layout\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"8px||8px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"8px||||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.27.4\" _module_preset=\"30b0cf31-fbc5-465c-beb7-b33ed988449b\" hover_enabled=\"0\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"]<p>Based in Kelowna, Serving the world...</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"8px||||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_social_media_follow _builder_version=\"4.27.3\" _module_preset=\"56a2a6c8-b03a-4dcb-8da7-ba079ae9a78d\" text_orientation=\"right\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#3b5998\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" 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.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" follow_button=\"off\" url_new_window=\"on\"]X[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#ea2c59\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"behance\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#0057ff\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" follow_button=\"off\" url_new_window=\"on\"]behance[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"dribbble\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#ea4c8d\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" follow_button=\"off\" url_new_window=\"on\"]dribbble[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Header Menu\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"0px||0px||true|false\" collapsed=\"on\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row column_structure=\"3_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"16px||16px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"3_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu _builder_version=\"4.27.3\" _module_preset=\"2f5866e6-af49-45da-b348-5238319c6f8b\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"8px|||20px|false|false\" custom_padding_tablet=\"8px|||0px|false|false\" custom_padding_phone=\"8px|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_button button_text=\"Schedule Call\" button_alignment=\"right\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','33-revision-v1','','','2025-09-02 23:16:13','2025-09-02 23:16:13','',33,'https://jestley.com/?p=58',0,'revision','',0),
(59,1,'2025-09-02 23:17:48','2025-09-02 23:17:48','[et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"4.27.3\" _module_preset=\"64731693-a92a-40b4-9e40-0874d41d58f6\" background_color_gradient_stops=\"#000000 10%|gcid-4907c8d4-9eff-49de-91ce-43a2d3a729cf 100%\" background_image=\"https://jestley.com/wp-content/uploads/2025/09/freelancer-04.jpg\" collapsed=\"on\" theme_builder_area=\"et_footer_layout\"][et_pb_row column_structure=\"3_4,1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"3_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_blurb title=\"I\'m available For Work\" use_icon=\"on\" font_icon=\"&#x5c;||divi||400\" icon_color=\"gcid-primary-color\" _builder_version=\"4.27.3\" _module_preset=\"e2ffe8a2-871c-4a65-90c9-fa92aca308af\" image_icon_custom_margin=\"||||false|false\" image_icon_custom_padding=\"||||false|false\" animation_style=\"fade\" animation_duration=\"2000ms\" animation_repeat=\"loop\" global_colors_info=\"{%22gcid-primary-color%22:%91%22icon_color%22%93}\" theme_builder_area=\"et_footer_layout\" custom_padding=\"3px|||||\"][/et_pb_blurb][et_pb_heading title=\"Want to talk about your next project?\" _builder_version=\"4.27.3\" _module_preset=\"23e843ac-c094-4b39-a5f7-5e8e40943721\" title_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_heading][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|desktop\" link_text_color__hover=\"#E02B20\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">Home</a>[/et_pb_text][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover=\"#E02B20\" link_text_color__hover_enabled=\"on|desktop\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">About</a>[/et_pb_text][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover=\"#E02B20\" link_text_color__hover_enabled=\"on|desktop\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">Project</a>[/et_pb_text][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover=\"#E02B20\" link_text_color__hover_enabled=\"on|desktop\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">Portfolio</a>[/et_pb_text][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"9f91d45b-ab8b-4097-9097-ca4ad0280e15\" link_text_color=\"#FFFFFF\" text_orientation=\"right\" custom_margin=\"||0px||false|false\" text_orientation_tablet=\"left\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_text_color__hover=\"#E02B20\" link_text_color__hover_enabled=\"on|desktop\" theme_builder_area=\"et_footer_layout\"]<a href=\"#\">Blog</a>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"6vw||6vw||true|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_heading title=\"Let\'s Make It Happen\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_level=\"h2\" title_text_align=\"center\" title_text_color=\"#FFFFFF\" title_font_size=\"7vw\" title_line_height=\"1.2em\" custom_margin=\"||20px||false|false\" title_font_size_last_edited=\"off|desktop\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_heading][et_pb_button button_text=\"Contact Us\" button_alignment=\"center\" _builder_version=\"4.27.3\" _module_preset=\"cfe02b96-1e49-45ba-a258-ce4f039bdea4\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_button button_text=\"info@bc3co.com\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.4\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" button_use_icon=\"off\" custom_padding=\"6px|24px|6px|24px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" button_url=\"mailto:info@bc3co.com\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"|20px||20px|false|true\" custom_padding_tablet=\"|20px||20px|false|true\" custom_padding_phone=\"10px|0px||0px|false|true\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_button button_text=\"(778) 581.0522\" button_alignment_tablet=\"center\" button_alignment_phone=\"center\" button_alignment_last_edited=\"on|tablet\" _builder_version=\"4.27.4\" _module_preset=\"3b6f0607-3907-457d-803f-df7639345ab7\" button_use_icon=\"off\" custom_padding=\"6px|24px|6px|24px|true|true\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" custom_padding=\"||||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_social_media_follow _builder_version=\"4.27.3\" _module_preset=\"c8d5b2aa-c955-470e-ae32-005f9e1e409b\" text_orientation=\"right\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#3b5998\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" 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.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" follow_button=\"off\" url_new_window=\"on\"]X[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.27.3\" _module_preset=\"0382fcda-3b96-4920-9c14-f6b5046f95aa\" background_color=\"#ea2c59\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" 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]','Theme Builder Layout','','inherit','closed','closed','','35-revision-v1','','','2025-09-02 23:17:48','2025-09-02 23:17:48','',35,'https://jestley.com/?p=59',0,'revision','',0),
(60,1,'2025-09-02 23:18:45','2025-09-02 23:18:45','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"4.27.3\" _module_preset=\"default\" collapsed=\"on\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" max_width=\"800px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Get In Touch\" _builder_version=\"4.27.3\" _module_preset=\"1bf9230d-7495-4141-b7a8-b5f0fac2c95b\" title_text_align=\"center\" custom_margin=\"||20px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.3\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>Ready to bring your vision to life? Whether you have a specific project in mind or just want to explore ideas, I’d love to hear from you. Let’s create something amazing together—drop me a message today!</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Phone\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.4\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>778 581 0522</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_heading title=\"Email\" _builder_version=\"4.27.3\" _module_preset=\"ece2dc0c-53af-4efa-8b21-7d94b7c037fd\" title_text_align=\"center\" custom_margin=\"||10px||false|false\" global_colors_info=\"{}\"][/et_pb_heading][et_pb_text _builder_version=\"4.27.4\" _module_preset=\"7467d508-8d80-43ee-b533-9d51832aaf4f\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" link_option_url=\"mailto:info@bc3co.com\"]<p>info@BC3Co.com</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.3\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.27.4\" _module_preset=\"87c7bfa0-49e1-4893-88a1-6bf55a9f6c7b\" _unique_id=\"7d3f7312-daf8-4e83-9286-090e80bdc079\" hover_enabled=\"0\" global_colors_info=\"{}\" use_spam_service=\"on\" recaptcha_list=\"add_new_account\" recaptcha_account_name=\"BC3Co\" recaptcha_site_key=\"6LdYELwrAAAAAJI_foPdepNrfzIkY_LqVIlpXdEV\" recaptcha_secret_key=\"6LdYELwrAAAAAAdPCbASTvJQXe9gRp2tRekxcR7h\" sticky_enabled=\"0\" email=\"info@bc3co.com\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.16\" 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\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.27.3\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||true|false\" locked=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.27.2\" _module_preset=\"default\" width=\"100%\" max_width=\"none\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.27.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|49|49|100|1|0|-1\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"60px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|1|0|-1\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"30px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|0.5|0|-0.5\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][et_pb_divider show_divider=\"off\" _builder_version=\"4.27.3\" _module_preset=\"9b52d381-b536-4bb4-a19e-133fd0133e5f\" background_color=\"gcid-a38ea201-6040-4fea-b7a4-603c94016c0c\" height=\"10px\" scroll_vertical_motion_enable=\"on\" scroll_vertical_motion=\"0|50|50|100|-0.5|0|0.5\" motion_trigger_start=\"top\" global_colors_info=\"{%22gcid-a38ea201-6040-4fea-b7a4-603c94016c0c%22:%91%22background_color%22%93}\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Contact','','inherit','closed','closed','','12-revision-v1','','','2025-09-02 23:18:45','2025-09-02 23:18:45','',12,'https://jestley.com/?p=60',0,'revision','',0);
/*!40000 ALTER TABLE `ePgN5dhl_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ePgN5dhl_term_relationships`
--

DROP TABLE IF EXISTS `ePgN5dhl_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_term_relationships`
--

LOCK TABLES `ePgN5dhl_term_relationships` WRITE;
/*!40000 ALTER TABLE `ePgN5dhl_term_relationships` DISABLE KEYS */;
INSERT INTO `ePgN5dhl_term_relationships` VALUES
(1,1,0),
(7,2,0),
(9,2,0),
(11,2,0),
(13,2,0),
(33,3,0),
(35,3,0),
(36,3,0),
(37,3,0),
(38,3,0),
(39,3,0),
(40,3,0),
(41,3,0),
(42,3,0),
(43,3,0);
/*!40000 ALTER TABLE `ePgN5dhl_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ePgN5dhl_term_taxonomy`
--

DROP TABLE IF EXISTS `ePgN5dhl_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_term_taxonomy`
--

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

--
-- Table structure for table `ePgN5dhl_termmeta`
--

DROP TABLE IF EXISTS `ePgN5dhl_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_termmeta`
--

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

--
-- Table structure for table `ePgN5dhl_terms`
--

DROP TABLE IF EXISTS `ePgN5dhl_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_terms`
--

LOCK TABLES `ePgN5dhl_terms` WRITE;
/*!40000 ALTER TABLE `ePgN5dhl_terms` DISABLE KEYS */;
INSERT INTO `ePgN5dhl_terms` VALUES
(1,'Uncategorized','uncategorized',0),
(2,'Onboarding Primary Menu','onboarding-primary-menu',0),
(3,'layout','layout',0);
/*!40000 ALTER TABLE `ePgN5dhl_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ePgN5dhl_usermeta`
--

DROP TABLE IF EXISTS `ePgN5dhl_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_usermeta`
--

LOCK TABLES `ePgN5dhl_usermeta` WRITE;
/*!40000 ALTER TABLE `ePgN5dhl_usermeta` DISABLE KEYS */;
INSERT INTO `ePgN5dhl_usermeta` VALUES
(1,1,'nickname','chase'),
(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,'ePgN5dhl_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(13,1,'ePgN5dhl_user_level','10'),
(14,1,'dismissed_wp_pointers',''),
(15,1,'show_welcome_panel','1'),
(16,1,'session_tokens','a:1:{s:64:\"897e9dec96a01fc190aedbd6452095d45628b211858bf7e8d7454b7976435c2b\";a:4:{s:10:\"expiration\";i:1757008360;s:2:\"ip\";s:12:\"24.71.174.64\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.0.0\";s:5:\"login\";i:1756835560;}}'),
(17,1,'ePgN5dhl_dashboard_quick_press_last_post_id','5'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.71.174.0\";}'),
(19,1,'ePgN5dhl_user-settings','libraryContent=browse'),
(20,1,'ePgN5dhl_user-settings-time','1756855150');
/*!40000 ALTER TABLE `ePgN5dhl_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ePgN5dhl_users`
--

DROP TABLE IF EXISTS `ePgN5dhl_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ePgN5dhl_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ePgN5dhl_users`
--

LOCK TABLES `ePgN5dhl_users` WRITE;
/*!40000 ALTER TABLE `ePgN5dhl_users` DISABLE KEYS */;
INSERT INTO `ePgN5dhl_users` VALUES
(1,'chase','$wp$2y$10$FkWHIMfqOJPrfgPzWFX9COvO1U1rTKsObiVBptkUjGyzBjsw3fPyy','chase','jestley@outlook.com','https://jestley.com','2025-09-02 16:58:35','',0,'admin');
/*!40000 ALTER TABLE `ePgN5dhl_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 2025-09-10 17:50:32